Interface PointsMaterialParams

interface PointsMaterialParams {
    filterIntensity?: boolean;
    maxIntensity?: number;
    maxPerspectivePointSize?: number;
    minIntensity?: number;
    minPerspectivePointSize?: number;
    perspectivePoints?: boolean;
    pointSize?: number;
    roundPoints?: boolean;
}

Properties

filterIntensity?: boolean

Whether the PointsMaterial points are made invisible when their intensity lies outside PointsMaterial.minIntensity and PointsMaterial.maxIntensity.

Default is false.

maxIntensity?: number

The maximum intensity of rendered PointsMaterial points when PointsMaterial.filterIntensity is true.

Default value is 1.0.

maxPerspectivePointSize?: number

The maximum rendered size of PointsMaterial points when PointsMaterial.perspectivePoints is true.

Default value is 6 pixels.

minIntensity?: number

The minimum intensity of rendered PointsMaterial points when PointsMaterial.filterIntensity is true.

Default value is 0.0.

minPerspectivePointSize?: number

The minimum rendered size of PointsMaterial points when PointsMaterial.perspectivePoints is true.

Default value is ```````` pixels.

perspectivePoints?: boolean

Whether the PointsMaterial point size reduces with distance when Camera.projection is set to PerspectiveProjectionType.

Default is true.

pointSize?: number

The point size of the PointsMaterial.

Default value is 2.0 pixels.

roundPoints?: boolean

Whether the PointsMaterial points are round or square.

Default is true to set points round.