Operator Reference
create_drawing_object_rectangle2 (Operator)
create_drawing_object_rectangle2
— Create a rectangle of any orientation which can be modified interactively.
Signature
Description
create_drawing_object_rectangle2
creates an oriented rectangle which can be
modified interactively in a HALCON window by the user. The rectangle is defined
by the coordinates Row
and Column
of its center,
its orientation Phi
, and the lengths of its half axis,
Length1
and Length2
respectively. The created rectangle is
returned in the handle DrawID
.
These parameters can be queried any time with get_drawing_object_params
,
as well as its corresponding HALCON object with get_drawing_object_iconic
.
In addition to those parameters, every drawing object has a number of
parameters which determine the appearance of the object in the HALCON window.
See set_drawing_object_params
for details on the number and meaning
of those parameters.
In order to enable the interactive modification with the drawing object, the
object must be attached to an existing window. See
attach_drawing_object_to_window
for further details.
Once attached, the rectangle is editable by the user through interaction
with the window.
There are three possible transformations for a rectangle2 object:
resizing, displacement and rotation.
The rectangle can be moved by dragging its center.
By dragging the side handles, the size of the rectangle can be modified.
The rectangle's orientation can only be changed by gripping a side
perpendicular to the first half axis.
In contrast to the operator draw_rectangle2
, this interaction does not
block the calling thread.
Execution Information
- Multithreading type: reentrant (runs in parallel with non-exclusive operators).
- Multithreading scope: global (may be called from any thread).
- Processed without parallelization.
This operator returns a handle. Note that the state of an instance of this handle type may be changed by specific operators even though the handle is used as an input parameter by those operators.
Parameters
Row
(input_control) rectangle2.center.y →
(real)
Row coordinate of the center.
Default: 150
Column
(input_control) rectangle2.center.x →
(real)
Column coordinate of the center.
Default: 150
Phi
(input_control) rectangle2.angle.rad →
(real)
Orientation of the first half axis in radians.
Default: 0
Length1
(input_control) rectangle2.hwidth →
(real)
First half axis.
Default: 100
Length2
(input_control) rectangle2.hheight →
(real)
Second half axis.
Default: 100
DrawID
(output_control) drawing_object →
(handle)
Handle of the drawing object.
Result
If the parameter values are correct the operator
create_drawing_object_rectangle2
returns the value 2 (
H_MSG_TRUE)
.
Otherwise an exception is raised.
Possible Predecessors
Possible Successors
disp_region
,
set_colored
,
set_line_width
,
set_draw
,
set_insert
,
attach_drawing_object_to_window
Alternatives
draw_rectangle2_mod
,
draw_rectangle2
,
draw_region
See also
gen_rectangle2
,
draw_circle
,
draw_ellipse
,
set_insert
Module
Foundation