Share

TinSurface.GetVerticesInsideBorder Method

Gets an array that contains all the TinSurfaceVertex objects inside the border specified by a Point3d collection.



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

Syntax

C#

public TinSurfaceVertex[] GetVerticesInsideBorder(
	Point3dCollection border
)

VB

Public Function GetVerticesInsideBorder ( 
	border As Point3dCollection
) As TinSurfaceVertex()

C++

public:
array<TinSurfaceVertex^>^ GetVerticesInsideBorder(
	Point3dCollection^ border
)

Parameters

border  Point3dCollection
A collection that contains the Point3d objects used to specify the border.

Return Value

TinSurfaceVertex

Exceptions

ExceptionCondition
ArgumentException Thrown when the border contains less than 3 points.

Remarks

The points in the collection should be able to build a border. This method is used to prepare the KrigingMethodOptions object used to smooth a surface using the Kriging method.

See Also

Reference

Was this information helpful?