scale factor for node foreshortening
parent
cab5878ac8
commit
1e5db22c25
|
@ -2,7 +2,7 @@ import * as THREE from 'three';
|
|||
|
||||
|
||||
const HYPERPLANE = 2.0;
|
||||
|
||||
const NODE_FORESHORTENING = 0.4;
|
||||
|
||||
class FourDShape extends THREE.Group {
|
||||
|
||||
|
@ -154,7 +154,7 @@ class FourDShape extends THREE.Group {
|
|||
const v4 = this.fourDrotate(n.x, n.y, n.z, n.w, rotations);
|
||||
const k = this.fourDscale(v4.w);
|
||||
const v3 = new THREE.Vector3(v4.x * k, v4.y * k, v4.z * k);
|
||||
const s4 = k * this.node_scale;
|
||||
const s4 = k * this.node_scale * NODE_FORESHORTENING;
|
||||
const s3 = new THREE.Vector3(s4, s4, s4);
|
||||
this.nodes3[n.id].v3 = v3;
|
||||
this.nodes3[n.id].object.position.copy(v3);
|
||||
|
|
Loading…
Reference in New Issue