SolidPolylineAddWithNormals Method |
Adds solid polyline geometry with normals for the specified pen and polyline points.
Namespace: Altaxo.Drawing.D3DAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic void AddWithNormals(
Action<PointD3D, VectorD3D> AddPositionAndNormal,
Action<int, int, int, bool> AddIndices,
ref int vertexIndexOffset,
PenX3D pen,
IList<PointD3D> polylinePoints
)
Parameters
- AddPositionAndNormal ActionPointD3D, VectorD3D
- The callback that receives generated positions and normals.
- AddIndices ActionInt32, Int32, Int32, Boolean
- The callback that receives generated triangle indices.
- vertexIndexOffset Int32
- The current vertex index offset that is updated as geometry is added.
- pen PenX3D
- The pen that defines the polyline appearance.
- polylinePoints IListPointD3D
- The polyline points used to generate the geometry.
See Also