Generates edges on the perimeter of the arc with equal length.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public List<Edge> GenerateEdgesOnPerimeter(
	int n
)
Visual Basic (Declaration)
Public Function GenerateEdgesOnPerimeter ( _
	n As Integer _
) As List(Of Edge)
Visual C++
public:
List<Edge^>^ GenerateEdgesOnPerimeter(
	int n
)

Parameters

n
Type: System..::.Int32
The number of edges to generate.

Return Value

Returns a set of n edges with equal length on the perimeter of the arc.

Exceptions

ExceptionCondition
System..::.ArgumentExceptionCan not generate less than one edge on perimeter of arc.

See Also