|
@@ -49,6 +49,7 @@ import { PointsMaterial } from './materials/PointsMaterial.js';
|
|
import { ShaderMaterial } from './materials/ShaderMaterial.js';
|
|
import { ShaderMaterial } from './materials/ShaderMaterial.js';
|
|
import { Box2 } from './math/Box2.js';
|
|
import { Box2 } from './math/Box2.js';
|
|
import { Box3 } from './math/Box3.js';
|
|
import { Box3 } from './math/Box3.js';
|
|
|
|
+import { Euler } from './math/Euler.js';
|
|
import { Sphere } from './math/Sphere.js';
|
|
import { Sphere } from './math/Sphere.js';
|
|
import { Color } from './math/Color.js';
|
|
import { Color } from './math/Color.js';
|
|
import { Frustum } from './math/Frustum.js';
|
|
import { Frustum } from './math/Frustum.js';
|
|
@@ -399,6 +400,15 @@ Box3.prototype.size = function ( optionalTarget ) {
|
|
|
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
+//
|
|
|
|
+
|
|
|
|
+Euler.prototype.toVector3 = function () {
|
|
|
|
+
|
|
|
|
+ console.error( 'THREE.Euler: .toVector3() has been removed. Use Vector3.setFromEuler() instead' );
|
|
|
|
+
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+
|
|
//
|
|
//
|
|
|
|
|
|
Sphere.prototype.empty = function () {
|
|
Sphere.prototype.empty = function () {
|