|
HeightMapVisual3DCreateMultiContourLinePositions Method |
CreateContourLinePositions creates positions for individual contour lines (also known as isolines) and returns them in an array of Point3DCollection (each element in the array represents positions for contour lines each value in contourLineValues).
The line positions are scaled by the size of this HeightMapVisual3D.
The lines can be offset on top of the solid geometry by setting the yOffset value.
To generate all contour positions in one Point3DCollection use
CreateContourLinePositions(Double, Double) method.
Namespace: Ab3d.VisualsAssembly: Ab3d.PowerToys (in Ab3d.PowerToys.dll) Version: 11.1.8864.1045
Syntax public Point3DCollection[] CreateMultiContourLinePositions(
double[] contourLineValues,
double yOffset = 0
)
Parameters
- contourLineValues Double
- array of values where the contour lines will be generated
- yOffset Double (Optional)
- optional offset value that is added to like y coordinate to generate the lines on top of solid geometry
Return Value
Point3DCollectionPoint3DCollection with all contour lines
See Also