mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 00:45:08 +01:00
5 lines
128 B
JavaScript
5 lines
128 B
JavaScript
import Vector from 'math/vector';
|
|
|
|
Vector.prototype.three = function() {
|
|
return new THREE.Vector3(this.x, this.y, this.z);
|
|
};
|