Skip to content

Projections

Projections - ProjectPointOnCircle

Projects a point onto a circle.

IN

Name Type Description
InPoint Point2D Point to be projected.
InCircle Circle2D Circle the points will be projected on.
Name String Set the tool's name
Enable Bool Sets if current tool is enabled or not

OUT

Name Type Description
OutPoint2D Point2D Projected point.
Error ErrorState Gets the execution error message

Projections - ProjectPointOnLine

Returns the projection of a point onto a line.

IN

Name Type Description
InPoint Point2D Point to be projected.
InLine Line2D Line the points will be projected on.
Name String Set the tool's name
Enable Bool Sets if current tool is enabled or not

OUT

Name Type Description
OutPoint2D Point2D Projected point.
Error ErrorState Gets the execution error message

Projections - ProjectPointsOnCircle

Projects points onto a circle.

IN

Name Type Description
InPoints Point2DArray Points to be projected.
InCircle Circle2D Circle the points will be projected on.
Name String Set the tool's name
Enable Bool Sets if current tool is enabled or not

OUT

Name Type Description
OutPoint2D Point2DArray Projected points.
Error ErrorState Gets the execution error message

Projections - ProjectPointsOnLine

Projects an array of points onto a line.

IN

Name Type Description
InPoints Point2DArray Points to be projected.
InLine Line2D Line the points will be projected on.
Name String Set the tool's name
Enable Bool Sets if current tool is enabled or not

OUT

Name Type Description
OutPoint2D Point2DArray Projected points.
Error ErrorState Gets the execution error message