Click or drag to resize
AB4D logo

ContourLinesFactory Class

ContourLinesFactory is a class that can be used to create Contour lines (sometimes also known as isolines). Contour lines connect positions with the same value. The values that will be used to create contour lines are defined in the class constructor.
Inheritance Hierarchy
SystemObject
  Ab3d.UtilitiesContourLinesFactory

Namespace: Ab3d.Utilities
Assembly: Ab3d.PowerToys (in Ab3d.PowerToys.dll) Version: 11.1.8864.1045
Syntax
C#
public class ContourLinesFactory

The ContourLinesFactory type exposes the following members.

Constructors
 NameDescription
Public methodContourLinesFactory Constructor
Top
Methods
 NameDescription
Public methodAddContourLinePositions(Point3DCollection, Int32Collection, IListDouble, Point3DCollection) 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.
Public methodAddContourLinePositions(Point3DCollection, Int32Collection, IListDouble, Point3DCollection) 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.
Public methodCreateContourLinePositions 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.
Public methodCreateMultiContourLinePositions 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 - defined in constructor). The 3D geometry is defined by the positions and triangleIndices collection. The values for each position is defined in the positionValues list.
Top
See Also