download
raw
727 Bytes
import { Material } from './Material.js';
import { Color } from '../math/Color.js';
class LineBasicMaterial extends Material {
constructor( parameters ) {
super();
this.isLineBasicMaterial = true;
this.type = 'LineBasicMaterial';
this.color = new Color( 0xffffff );
this.map = null;
this.linewidth = 1;
this.linecap = 'round';
this.linejoin = 'round';
this.fog = true;
this.setValues( parameters );
}
copy( source ) {
super.copy( source );
this.color.copy( source.color );
this.map = source.map;
this.linewidth = source.linewidth;
this.linecap = source.linecap;
this.linejoin = source.linejoin;
this.fog = source.fog;
return this;
}
}
export { LineBasicMaterial };

Xet Storage Details

Size:
727 Bytes
·
Xet hash:
eeeb4c02114c5dd6cadfbbbc2019e13dd55cfacda0e759e0e25b356dc87c3e2a

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.