|
@@ -730,22 +730,6 @@ addMethodChaining( 'decrementBefore', decrementBefore );
|
|
|
addMethodChaining( 'increment', increment );
|
|
addMethodChaining( 'increment', increment );
|
|
|
addMethodChaining( 'decrement', decrement );
|
|
addMethodChaining( 'decrement', decrement );
|
|
|
|
|
|
|
|
-/**
|
|
|
|
|
- * @tsl
|
|
|
|
|
- * @function
|
|
|
|
|
- * @deprecated since r168. Use {@link mod} instead.
|
|
|
|
|
- *
|
|
|
|
|
- * @param {Node} a - The first input.
|
|
|
|
|
- * @param {Node} b - The second input.
|
|
|
|
|
- * @returns {OperatorNode}
|
|
|
|
|
- */
|
|
|
|
|
-export const remainder = ( a, b ) => { // @deprecated, r168
|
|
|
|
|
-
|
|
|
|
|
- console.warn( 'THREE.TSL: "remainder()" is deprecated. Use "mod( int( ... ) )" instead.' );
|
|
|
|
|
- return mod( a, b );
|
|
|
|
|
-
|
|
|
|
|
-};
|
|
|
|
|
-
|
|
|
|
|
/**
|
|
/**
|
|
|
* @tsl
|
|
* @tsl
|
|
|
* @function
|
|
* @function
|
|
@@ -762,5 +746,4 @@ export const modInt = ( a, b ) => { // @deprecated, r175
|
|
|
|
|
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
-addMethodChaining( 'remainder', remainder );
|
|
|
|
|
addMethodChaining( 'modInt', modInt );
|
|
addMethodChaining( 'modInt', modInt );
|