flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
21
VISUALIZACION/node_modules/three/examples/jsm/objects/InstancedPoints.js
generated
vendored
Executable file
21
VISUALIZACION/node_modules/three/examples/jsm/objects/InstancedPoints.js
generated
vendored
Executable file
|
|
@ -0,0 +1,21 @@
|
|||
import {
|
||||
Mesh,
|
||||
InstancedPointsNodeMaterial
|
||||
} from 'three';
|
||||
import InstancedPointsGeometry from '../geometries/InstancedPointsGeometry.js';
|
||||
|
||||
class InstancedPoints extends Mesh {
|
||||
|
||||
constructor( geometry = new InstancedPointsGeometry(), material = new InstancedPointsNodeMaterial() ) {
|
||||
|
||||
super( geometry, material );
|
||||
|
||||
this.isInstancedPoints = true;
|
||||
|
||||
this.type = 'InstancedPoints';
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
export default InstancedPoints;
|
||||
Loading…
Add table
Add a link
Reference in a new issue