Name
get_points_ellipseget_points_ellipseGetPointsEllipseGetPointsEllipse — Calculate a point of an ellipse corresponding to a specific angle.
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)
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.
- Multithreading type: reentrant (runs in parallel with non-exclusive operators).
- Multithreading scope: global (may be called from any thread).
- Processed without parallelization.
Angle corresponding to the resulting point [rad].
Default value: 0
Restriction: Angle >= 0 && Angle <= 6.283185307
Row coordinate of the center of the ellipse.
Column coordinate of the center of the ellipse.
Orientation of the main axis [rad].
Restriction: Phi >= 0 && Phi <= 6.283185307
Length of the larger half axis.
Restriction: Radius1 > 0
Length of the smaller half axis.
Restriction: Radius2 >= 0
Row coordinate of the point on the ellipse.
Column coordinates of the point on the ellipse.
draw_ellipse(WindowHandle,Row,Column,Phi,Radius1,Radius2)
get_points_ellipse([0,3.14],Row,Column,Phi,Radius1,Radius2,\
RowPoint,ColPoint)
get_points_ellipseget_points_ellipseGetPointsEllipseGetPointsEllipseGetPointsEllipse returns 2 (H_MSG_TRUE) if all parameter
values are correct. If necessary, an exception is raised.
fit_ellipse_contour_xldfit_ellipse_contour_xldFitEllipseContourXldFitEllipseContourXldFitEllipseContourXld,
draw_ellipsedraw_ellipseDrawEllipseDrawEllipseDrawEllipse,
gen_ellipse_contour_xldgen_ellipse_contour_xldGenEllipseContourXldGenEllipseContourXldGenEllipseContourXld
gen_ellipse_contour_xldgen_ellipse_contour_xldGenEllipseContourXldGenEllipseContourXldGenEllipseContourXld
Foundation