CircleGetVertices Method
Return a list of vertices for a circle of the specified size centered
at the provided location.
Namespace: GeometryAssembly: Geometry (in Geometry.dll) Version: 25.2414.4032
public static List<FPoint> GetVertices(
FPoint center,
float radius,
int vertexCount,
float thetaOffset = 0f
)
Public Shared Function GetVertices (
center As FPoint,
radius As Single,
vertexCount As Integer,
Optional thetaOffset As Single = 0F
) As List(Of FPoint)
No code example is currently available or this language may not be supported.
- center FPoint
-
Reference to the point at which the circle is centered.
- radius Single
-
Radius of the circle.
- vertexCount Int32
-
Count of vertices to return.
- thetaOffset Single (Optional)
-
The optional rotation of the shape, in radians.
ListFPoint
Reference to a list of evenly-spaced vertices around the edge of the
indicated circle, if valid. Otherwise, an empty list.