Adds multiple vertices to the TinSurface object.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.2516.0

Syntax

C#
public SurfaceOperationAddTinMultipleVertices AddVertices(
	Point2dCollection locations
)
Visual Basic
Public Function AddVertices ( _
	locations As Point2dCollection _
) As SurfaceOperationAddTinMultipleVertices
Visual C++
public:
SurfaceOperationAddTinMultipleVertices^ AddVertices(
	Point2dCollection^ locations
)

Parameters

locations
Type: Point2dCollection
Locations where vertices will be added.

Remarks

This overload method takes a point2d collection as a parameter. If the location is on the surface, the elevation of vertex to be added will be automatically calculated according to current the triangle. If the location is not on the surface, the elevation will be set as 0.0 by default.

See Also