Constructor properties.

interface Line2ConstructorProps {
    geometry?: LineGeometry;
    material?: LineMaterial;
    pointsForCurve?: number;
}

Properties

geometry?: LineGeometry

The geometry of the line.

material?: LineMaterial

The material of the line.

pointsForCurve?: number

If this node contains a Curve, this property determines how many points are used to create the geometry from the curve.

50