|
@@ -570,6 +570,12 @@ Object.assign( Vector3.prototype, {
|
|
|
console.warn( 'THREE.Vector3: .getColumnFromMatrix() has been renamed to .setFromMatrixColumn().' );
|
|
|
return this.setFromMatrixColumn( matrix, index );
|
|
|
|
|
|
+ },
|
|
|
+ applyProjection: function ( m ) {
|
|
|
+
|
|
|
+ console.warn( 'THREE.Vector3: .applyProjection() has been removed. Use .applyMatrix4( m ) instead.' );
|
|
|
+ return this.applyMatrix4( m );
|
|
|
+
|
|
|
}
|
|
|
|
|
|
} );
|