Click or drag to resize
AB4D logo

ContourLinesFactoryAddContourLinePositions(Point3DCollection, Int32Collection, IListDouble, Point3DCollection) Method

AddContourLinePositions adds positions to the specified contourLinePositions. The contour line are created with values that were specified in the class constructor. The 3D geometry is defined by the positions and triangleIndices collection. The values for each position is defined in the positionValues list.

Namespace: Ab3d.Utilities
Assembly: Ab3d.PowerToys (in Ab3d.PowerToys.dll) Version: 11.1.8864.1045
Syntax
C#
public void AddContourLinePositions(
	Point3DCollection positions,
	Int32Collection triangleIndices,
	IList<double> positionValues,
	Point3DCollection contourLinePositions
)

Parameters

positions  Point3DCollection
Point3DCollection with positions that define the 3D object
triangleIndices  Int32Collection
Int32Collection with triangle indices
positionValues  IListDouble
a list of double value that define the values for each 3D position
contourLinePositions  Point3DCollection
Point3DCollection where the contour line positions will be added
Remarks

AddContourLinePositions adds positions to the specified contourLinePositions. The contour line are created with values that were specified in the class constructor.

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 AddContourLinePositions(Point3DCollection, Int32Collection, IListDouble, Point3DCollection) method.

See Also