This document is archived and information here might be outdated. Recommended version. |
Densify segment into the specified number of smaller segments. This method is intended for internal use only.
[Visual Basic .NET] Public Sub Densify3D ( _ ByVal cMaxSegments As Integer, _ ByVal maxDeviation As Double, _ ByRef pcOutSegments As Integer, _ ByRef ppSegments As ILine _ )
[C#] public void Densify3D ( int cMaxSegments, double maxDeviation, ref int pcOutSegments, ref ILine ppSegments );
[C++]
HRESULT Densify3D(
long cMaxSegments,
double maxDeviation,
System.Int32* pcOutSegments,
ILine** ppSegments
);
[C++]
Parameters cMaxSegments
cMaxSegments is a parameter of type long maxDeviation
maxDeviation is a parameter of type double pcOutSegments [out]
pcOutSegments is a parameter of type long* ppSegments [out]
ppSegments is a parameter of type ILine**
This method is not intended to be called directly. To densify a SegmentZ, add it to a PolylineZ and call IPolycurve3D.Densify3D on the PolylineZ.