You are here: Start » FIL.NET » FIL.ProjectPointsOnCircle
Projects points onto a circle.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void ProjectPointsOnCircle ( IList<FilNet.Point2D> inPoints, FilNet.Circle2D inCircle, IList<FilNet.Point2D> outProjectionPoints, out FilNet.Arc2D? outProjectionArc )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPoints | System.Collections.Generic.IList<FilNet.Point2D> | Points to be projected. | ||
![]() | inCircle | FilNet.Circle2D | Circle the points will be projected on. | ||
![]() | outProjectionPoints | System.Collections.Generic.IList<FilNet.Point2D> | Projected points. | ||
![]() | outProjectionArc | FilNet.Arc2D? | Arc containing the projected points. |
Description
Note that because of inaccuracies of floating-point arithmetic, some geometric operations (including this one) may lead to unpredictable results for degenerated cases. In this filter such a case occurs when an input point and the center of the input circle are almost equal.
Examples
![]() |
![]() |
ProjectPointsOnCircle performed on points and circle.