Vector3
This type represents a 3D vector using the Vector3 class from the Three.js library. You can learn more about Vector3 in the official Three.js documentation: https://threejs.org/docs/#api/en/math/Vector3
type Vector3 = {
x: number;
y: number;
z: number;
};