Skip to main content

MaterialLineBasicMaterial

LineDashedMaterial

A material for drawing wireframe-style geometries with dashed lines.

Code Example

const material = new THREE.LineDashedMaterial( { color: 0xffffff, linewidth:
1, scale: 1, dashSize: 3, gapSize: 1, } );

Examples

[example:webgl_lines_dashed WebGL / lines / dashed]

Constructor

LineDashedMaterial

function LineDashedMaterial( parameters: Object ): void;  

parameters - (optional) an object with one or more properties defining the material's appearance. Any property of the material (including any property inherited from LineBasicMaterial) can be passed in here.

Properties

See the base LineBasicMaterial class for common properties.

dashSize

dashSize: number;  

The size of the dash. This is both the gap with the stroke. Default is 3.

gapSize

gapSize: number;  

The size of the gap. Default is 1.

isLineDashedMaterial

isLineDashedMaterial: Boolean;  

Read-only flag to check if a given object is of type LineDashedMaterial.

scale

scale: number;  

The scale of the dashed part of a line. Default is 1.

Methods

See the base LineBasicMaterial class for common methods.

Source

src/materials/LineDashedMaterial.js