ClassesClasses | | Operators

get_points_ellipseget_points_ellipseGetPointsEllipseGetPointsEllipse (Operator)

Name

get_points_ellipseget_points_ellipseGetPointsEllipseGetPointsEllipse — Calculate a point of an ellipse corresponding to a specific angle.

Signature

get_points_ellipse( : : Angle, Row, Column, Phi, Radius1, Radius2 : RowPoint, ColPoint)

Herror get_points_ellipse(double Angle, double Row, double Column, double Phi, double Radius1, double Radius2, double* RowPoint, double* ColPoint)

Herror T_get_points_ellipse(const Htuple Angle, const Htuple Row, const Htuple Column, const Htuple Phi, const Htuple Radius1, const Htuple Radius2, Htuple* RowPoint, Htuple* ColPoint)

void GetPointsEllipse(const HTuple& Angle, const HTuple& Row, const HTuple& Column, const HTuple& Phi, const HTuple& Radius1, const HTuple& Radius2, HTuple* RowPoint, HTuple* ColPoint)

static void HMisc::GetPointsEllipse(const HTuple& Angle, double Row, double Column, double Phi, double Radius1, double Radius2, HTuple* RowPoint, HTuple* ColPoint)

static void HMisc::GetPointsEllipse(double Angle, double Row, double Column, double Phi, double Radius1, double Radius2, double* RowPoint, double* ColPoint)

static void HOperatorSet.GetPointsEllipse(HTuple angle, HTuple row, HTuple column, HTuple phi, HTuple radius1, HTuple radius2, out HTuple rowPoint, out HTuple colPoint)

static void HMisc.GetPointsEllipse(HTuple angle, double row, double column, double phi, double radius1, double radius2, out HTuple rowPoint, out HTuple colPoint)

static void HMisc.GetPointsEllipse(double angle, double row, double column, double phi, double radius1, double radius2, out double rowPoint, out double colPoint)

Description

get_points_ellipseget_points_ellipseGetPointsEllipseGetPointsEllipseGetPointsEllipse returns the point (RowPointRowPointRowPointRowPointrowPoint,ColPointColPointColPointColPointcolPoint) on the specified ellipse corresponding to the angle in AngleAngleAngleAngleangle, which refers to the main axis of the ellipse. The ellipse itself is characterized by the center (RowRowRowRowrow, ColumnColumnColumnColumncolumn), the orientation of the main axis PhiPhiPhiPhiphi relative to the horizontal axis, the length of the larger (Radius1Radius1Radius1Radius1radius1) and the smaller half axis (Radius2Radius2Radius2Radius2radius2). The angles are measured counter clockwise in radiants.

Execution Information

Parameters

AngleAngleAngleAngleangle (input_control)  real(-array) HTupleHTupleHtuple (real) (double) (double) (double)

Angle corresponding to the resulting point [rad].

Default value: 0

Restriction: Angle >= 0 && Angle <= 6.283185307

RowRowRowRowrow (input_control)  ellipse.center.y HTupleHTupleHtuple (real) (double) (double) (double)

Row coordinate of the center of the ellipse.

ColumnColumnColumnColumncolumn (input_control)  ellipse.center.x HTupleHTupleHtuple (real) (double) (double) (double)

Column coordinate of the center of the ellipse.

PhiPhiPhiPhiphi (input_control)  ellipse.angle.rad HTupleHTupleHtuple (real) (double) (double) (double)

Orientation of the main axis [rad].

Restriction: Phi >= 0 && Phi <= 6.283185307

Radius1Radius1Radius1Radius1radius1 (input_control)  ellipse.radius1 HTupleHTupleHtuple (real) (double) (double) (double)

Length of the larger half axis.

Restriction: Radius1 > 0

Radius2Radius2Radius2Radius2radius2 (input_control)  ellipse.radius2 HTupleHTupleHtuple (real) (double) (double) (double)

Length of the smaller half axis.

Restriction: Radius2 >= 0

RowPointRowPointRowPointRowPointrowPoint (output_control)  point.y(-array) HTupleHTupleHtuple (real) (double) (double) (double)

Row coordinate of the point on the ellipse.

ColPointColPointColPointColPointcolPoint (output_control)  point.x(-array) HTupleHTupleHtuple (real) (double) (double) (double)

Column coordinates of the point on the ellipse.

Example (HDevelop)

draw_ellipse(WindowHandle,Row,Column,Phi,Radius1,Radius2)
get_points_ellipse([0,3.14],Row,Column,Phi,Radius1,Radius2,\
                   RowPoint,ColPoint)

Result

get_points_ellipseget_points_ellipseGetPointsEllipseGetPointsEllipseGetPointsEllipse returns 2 (H_MSG_TRUE) if all parameter values are correct. If necessary, an exception is raised.

Possible Predecessors

fit_ellipse_contour_xldfit_ellipse_contour_xldFitEllipseContourXldFitEllipseContourXldFitEllipseContourXld, draw_ellipsedraw_ellipseDrawEllipseDrawEllipseDrawEllipse, gen_ellipse_contour_xldgen_ellipse_contour_xldGenEllipseContourXldGenEllipseContourXldGenEllipseContourXld

See also

gen_ellipse_contour_xldgen_ellipse_contour_xldGenEllipseContourXldGenEllipseContourXldGenEllipseContourXld

Module

Foundation


ClassesClasses | | Operators