ClassesClassesClassesClasses | | | | Operators

draw_ellipsedraw_ellipseDrawEllipsedraw_ellipseDrawEllipseDrawEllipse (Operator)

Name

draw_ellipsedraw_ellipseDrawEllipsedraw_ellipseDrawEllipseDrawEllipse — Interactive drawing of an ellipse.

Signature

draw_ellipse( : : WindowHandle : Row, Column, Phi, Radius1, Radius2)

Herror draw_ellipse(const Hlong WindowHandle, double* Row, double* Column, double* Phi, double* Radius1, double* Radius2)

Herror T_draw_ellipse(const Htuple WindowHandle, Htuple* Row, Htuple* Column, Htuple* Phi, Htuple* Radius1, Htuple* Radius2)

Herror draw_ellipse(const HTuple& WindowHandle, double* Row, double* Column, double* Phi, double* Radius1, double* Radius2)

double HWindow::DrawEllipse(HTuple* Column, HTuple* Phi, HTuple* Radius1, HTuple* Radius2) const

void DrawEllipse(const HTuple& WindowHandle, HTuple* Row, HTuple* Column, HTuple* Phi, HTuple* Radius1, HTuple* Radius2)

void HWindow::DrawEllipse(double* Row, double* Column, double* Phi, double* Radius1, double* Radius2) const

void HOperatorSetX.DrawEllipse(
[in] VARIANT WindowHandle, [out] VARIANT* Row, [out] VARIANT* Column, [out] VARIANT* Phi, [out] VARIANT* Radius1, [out] VARIANT* Radius2)

double HWindowX.DrawEllipse(
[out] double* Column, [out] double* Phi, [out] double* Radius1, [out] double* Radius2)

static void HOperatorSet.DrawEllipse(HTuple windowHandle, out HTuple row, out HTuple column, out HTuple phi, out HTuple radius1, out HTuple radius2)

void HWindow.DrawEllipse(out double row, out double column, out double phi, out double radius1, out double radius2)

Description

draw_ellipsedraw_ellipseDrawEllipsedraw_ellipseDrawEllipseDrawEllipse returns the parameter for any orientated ellipse, which has been created interactively by the user in the window.

The created ellipse is described by its center, RowRowRowRowRowrow and ColumnColumnColumnColumnColumncolumn, its orientation, PhiPhiPhiPhiPhiphi, and its two half axes, Radius1Radius1Radius1Radius1Radius1radius1 and Radius2Radius2Radius2Radius2Radius2radius2.

To create an ellipse you have to determine the center of the ellipse with the left mouse button. Keeping the button pressed determines the length (Radius1Radius1Radius1Radius1Radius1radius1) and the orientation (PhiPhiPhiPhiPhiphi) of the first half axis. In doing so a temporary default length for the second half axis is assumed, which may be modified afterwards on demand. After another mouse click in the center of the created ellipse you can move it. A mouse click close to a vertex “grips” it to modify the length of the appropriate half axis. You may modify the orientation only, if a vertex of the first half axis is gripped.

Pressing the right mouse button terminates the procedure. On macOS draw_ellipsedraw_ellipseDrawEllipsedraw_ellipseDrawEllipseDrawEllipse can also be terminated by pressing the escape key. After terminating the procedure the ellipse is not visible in the window any longer.

Parallelization

Parameters

WindowHandleWindowHandleWindowHandleWindowHandleWindowHandlewindowHandle (input_control)  window HWindow, HTupleHTupleHTupleHWindowX, VARIANTHtuple (integer) (IntPtr) (Hlong) (Hlong) (Hlong) (Hlong)

Window handle.

RowRowRowRowRowrow (output_control)  ellipse.center.y HTupleHTupleHTupleVARIANTHtuple (real) (double) (double) (double) (double) (double)

Row index of the center.

ColumnColumnColumnColumnColumncolumn (output_control)  ellipse.center.x HTupleHTupleHTupleVARIANTHtuple (real) (double) (double) (double) (double) (double)

Column index of the center.

PhiPhiPhiPhiPhiphi (output_control)  ellipse.angle.rad HTupleHTupleHTupleVARIANTHtuple (real) (double) (double) (double) (double) (double)

Orientation of the first half axis in radians.

Radius1Radius1Radius1Radius1Radius1radius1 (output_control)  ellipse.radius1 HTupleHTupleHTupleVARIANTHtuple (real) (double) (double) (double) (double) (double)

First half axis.

Radius2Radius2Radius2Radius2Radius2radius2 (output_control)  ellipse.radius2 HTupleHTupleHTupleVARIANTHtuple (real) (double) (double) (double) (double) (double)

Second half axis.

Example (HDevelop)

read_image(Image,'monkey')
draw_ellipse(WindowHandle,Row,Column,Phi,Radius1,Radius2)
gen_ellipse(Ellipse,Row,Column,Phi,Radius1,Radius2)
reduce_domain(Image,Ellipse,GrayEllipse)
sobel_amp(GrayEllipse,Sobel,'sum_abs',3)
dev_display(Sobel)

Example (C)

read_image(&Image,"monkey") ;
draw_ellipse(WindowHandle,&Row,&Column,&Phi,&Radius1,&Radius2) ;
gen_ellipse(&Ellipse,Row,Column,Phi,Radius1,Radius2) ;
reduce_domain(Image,Ellipse,&GrayEllipse) ;
sobel_amp(GrayEllipse,&Sobel,"sum_abs",3) ;
disp_image(Sobel,WindowHandle) ;

Example (HDevelop)

read_image(Image,'monkey')
draw_ellipse(WindowHandle,Row,Column,Phi,Radius1,Radius2)
gen_ellipse(Ellipse,Row,Column,Phi,Radius1,Radius2)
reduce_domain(Image,Ellipse,GrayEllipse)
sobel_amp(GrayEllipse,Sobel,'sum_abs',3)
dev_display(Sobel)

Example (HDevelop)

read_image(Image,'monkey')
draw_ellipse(WindowHandle,Row,Column,Phi,Radius1,Radius2)
gen_ellipse(Ellipse,Row,Column,Phi,Radius1,Radius2)
reduce_domain(Image,Ellipse,GrayEllipse)
sobel_amp(GrayEllipse,Sobel,'sum_abs',3)
dev_display(Sobel)

Example (HDevelop)

read_image(Image,'monkey')
draw_ellipse(WindowHandle,Row,Column,Phi,Radius1,Radius2)
gen_ellipse(Ellipse,Row,Column,Phi,Radius1,Radius2)
reduce_domain(Image,Ellipse,GrayEllipse)
sobel_amp(GrayEllipse,Sobel,'sum_abs',3)
dev_display(Sobel)

Example (HDevelop)

read_image(Image,'monkey')
draw_ellipse(WindowHandle,Row,Column,Phi,Radius1,Radius2)
gen_ellipse(Ellipse,Row,Column,Phi,Radius1,Radius2)
reduce_domain(Image,Ellipse,GrayEllipse)
sobel_amp(GrayEllipse,Sobel,'sum_abs',3)
dev_display(Sobel)

Result

draw_ellipsedraw_ellipseDrawEllipsedraw_ellipseDrawEllipseDrawEllipse returns 2 (H_MSG_TRUE), if the window is valid and the needed drawing mode (see set_insertset_insertSetInsertset_insertSetInsertSetInsert) is available. If necessary, an exception is raised.

Possible Predecessors

open_windowopen_windowOpenWindowopen_windowOpenWindowOpenWindow

Possible Successors

reduce_domainreduce_domainReduceDomainreduce_domainReduceDomainReduceDomain, disp_regiondisp_regionDispRegiondisp_regionDispRegionDispRegion, set_coloredset_coloredSetColoredset_coloredSetColoredSetColored, set_line_widthset_line_widthSetLineWidthset_line_widthSetLineWidthSetLineWidth, set_drawset_drawSetDrawset_drawSetDrawSetDraw, set_insertset_insertSetInsertset_insertSetInsertSetInsert

Alternatives

draw_ellipse_moddraw_ellipse_modDrawEllipseModdraw_ellipse_modDrawEllipseModDrawEllipseMod, draw_circledraw_circleDrawCircledraw_circleDrawCircleDrawCircle, draw_regiondraw_regionDrawRegiondraw_regionDrawRegionDrawRegion

See also

gen_ellipsegen_ellipseGenEllipsegen_ellipseGenEllipseGenEllipse, draw_rectangle1draw_rectangle1DrawRectangle1draw_rectangle1DrawRectangle1DrawRectangle1, draw_rectangle2draw_rectangle2DrawRectangle2draw_rectangle2DrawRectangle2DrawRectangle2, draw_polygondraw_polygonDrawPolygondraw_polygonDrawPolygonDrawPolygon, set_insertset_insertSetInsertset_insertSetInsertSetInsert

Module

Foundation


ClassesClassesClassesClasses | | | | Operators