Instantiates a new point insertion event arg.

Namespace:  ceometric.ComputationalGeometry
Assembly:  ceometric.ComputationalGeometry (in ceometric.ComputationalGeometry.dll) Version: 2.4.0.0 (2.4.0.0)

Syntax

C#
public PointInsertionEventArg(
	int index,
	int maxIndex,
	bool isInitialTriangulationPoint
)
Visual Basic (Declaration)
Public Sub New ( _
	index As Integer, _
	maxIndex As Integer, _
	isInitialTriangulationPoint As Boolean _
)
Visual C++
public:
PointInsertionEventArg(
	int index, 
	int maxIndex, 
	bool isInitialTriangulationPoint
)

Parameters

index
Type: System..::.Int32
The index of the point to insert.
maxIndex
Type: System..::.Int32
The maximum number of points to insert.
isInitialTriangulationPoint
Type: System..::.Boolean
True if the point is a initial triangulation point, false if it is being added to the existing triangulation.

See Also