|
@@ -1,7 +1,7 @@
|
|
|
(function (global, factory) {
|
|
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
|
|
typeof define === 'function' && define.amd ? define(['exports'], factory) :
|
|
|
- (factory((global.THREE = global.THREE || {})));
|
|
|
+ (factory((global.THREE = {})));
|
|
|
}(this, (function (exports) { 'use strict';
|
|
|
|
|
|
// Polyfills
|
|
@@ -65,8 +65,6 @@
|
|
|
|
|
|
Object.assign = function ( target ) {
|
|
|
|
|
|
- 'use strict';
|
|
|
-
|
|
|
if ( target === undefined || target === null ) {
|
|
|
|
|
|
throw new TypeError( 'Cannot convert undefined or null to object' );
|
|
@@ -36780,13 +36778,7 @@
|
|
|
cpx0 = laste.x;
|
|
|
cpy0 = laste.y;
|
|
|
|
|
|
- for ( var i2 = 1; i2 <= divisions; i2 ++ ) {
|
|
|
-
|
|
|
- var t = i2 / divisions;
|
|
|
- QuadraticBezier( t, cpx0, cpx1, cpx );
|
|
|
- QuadraticBezier( t, cpy0, cpy1, cpy );
|
|
|
-
|
|
|
- }
|
|
|
+
|
|
|
|
|
|
}
|
|
|
|
|
@@ -36810,13 +36802,7 @@
|
|
|
cpx0 = laste.x;
|
|
|
cpy0 = laste.y;
|
|
|
|
|
|
- for ( var i2 = 1; i2 <= divisions; i2 ++ ) {
|
|
|
-
|
|
|
- var t = i2 / divisions;
|
|
|
- CubicBezier( t, cpx0, cpx1, cpx2, cpx );
|
|
|
- CubicBezier( t, cpy0, cpy1, cpy2, cpy );
|
|
|
-
|
|
|
- }
|
|
|
+
|
|
|
|
|
|
}
|
|
|
|