| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- import { LineBasicMaterial } from './LineBasicMaterial.js';
- /**
- * parameters = {
- * color: <hex>,
- * opacity: <float>,
- *
- * linewidth: <float>,
- *
- * scale: <float>,
- * dashSize: <float>,
- * gapSize: <float>
- * }
- */
- class LineDashedMaterial extends LineBasicMaterial {
- constructor( parameters ) {
- super();
- this.type = 'LineDashedMaterial';
- this.scale = 1;
- this.dashSize = 3;
- this.gapSize = 1;
- this.setValues( parameters );
- }
- copy( source ) {
- super.copy( source );
- this.scale = source.scale;
- this.dashSize = source.dashSize;
- this.gapSize = source.gapSize;
- return this;
- }
- }
- LineDashedMaterial.prototype.isLineDashedMaterial = true;
- export { LineDashedMaterial };
|