flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
24
VISUALIZACION/node_modules/three/examples/jsm/lines/WireframeGeometry2.js
generated
vendored
Executable file
24
VISUALIZACION/node_modules/three/examples/jsm/lines/WireframeGeometry2.js
generated
vendored
Executable file
|
|
@ -0,0 +1,24 @@
|
|||
import {
|
||||
WireframeGeometry
|
||||
} from 'three';
|
||||
import { LineSegmentsGeometry } from '../lines/LineSegmentsGeometry.js';
|
||||
|
||||
class WireframeGeometry2 extends LineSegmentsGeometry {
|
||||
|
||||
constructor( geometry ) {
|
||||
|
||||
super();
|
||||
|
||||
this.isWireframeGeometry2 = true;
|
||||
|
||||
this.type = 'WireframeGeometry2';
|
||||
|
||||
this.fromWireframeGeometry( new WireframeGeometry( geometry ) );
|
||||
|
||||
// set colors, maybe
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
export { WireframeGeometry2 };
|
||||
Loading…
Add table
Add a link
Reference in a new issue