|
@@ -195,6 +195,15 @@ Object.defineProperties( THREE.Vector3.prototype, {
|
|
|
|
|
|
//
|
|
|
|
|
|
+THREE.Face4 = function ( a, b, c, d, normal, color, materialIndex ) {
|
|
|
+
|
|
|
+ console.warn( 'THREE.Face4 has been removed. A THREE.Face3 will be created instead.' );
|
|
|
+ return new THREE.Face3( a, b, c, normal, color, materialIndex );
|
|
|
+
|
|
|
+};
|
|
|
+
|
|
|
+//
|
|
|
+
|
|
|
Object.defineProperties( THREE.Object3D.prototype, {
|
|
|
eulerOrder: {
|
|
|
get: function () {
|