/** * */ interface VectorE3 { /** * The Cartesian x-coordinate. */ x: number; /** * The Cartesian y-coordinate. */ y: number; /** * The Cartesian z-coordinate. */ z: number; } export default VectorE3;