Provides a collection of points along the curve at the requested granularity.
Namespace:
AGI.Foundation.Geometry.Shapes
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic virtual List<PointOnCurve> GetPoints(
double granularity
)
Public Overridable Function GetPoints (
granularity As Double
) As List(Of PointOnCurve)
public:
virtual List<PointOnCurve>^ GetPoints(
double granularity
)
abstract GetPoints :
granularity : float -> List<PointOnCurve>
override GetPoints :
granularity : float -> List<PointOnCurve>
Parameters
- granularity
- Type: System.Double
The increment of AngleSubtended used to generate
the intermediate points between the initial and final points.
Return Value
Type:
List<PointOnCurve>
The collection of points. The points will be ordered in increasing order
by
Fraction
See Also