Contour |
public Point3DCollection CreateContourLinePositions( Point3DCollection positions, Int32Collection triangleIndices, IList<double> positionValues )
CreateContourLinePositions creates positions for all contour lines (also known as isolines) and returns them in one Point3DCollection.
The 3D geometry is defined by the positions and triangleIndices collection. The values for each position is defined in the positionValues list.
To generate positions for individual contour lines call CreateMultiContourLinePositions(Point3DCollection, Int32Collection, IListDouble) method.
This method always creates a new Point3DCollection. In case when the position values are changing and you want to preserve the existing Point3DCollection, you can call the AddContourLinePositions(Point3DCollection, Int32Collection, IListDouble, Point3DCollection).