/** * @class VectorE4 */ interface VectorE4 { /** * The Cartesian x-coordinate. * @property x * @type number */ x: number; /** * The Cartesian y-coordinate. * @property y * @type number */ y: number; /** * The Cartesian z-coordinate. * @property z * @type number */ z: number; /** * The Cartesian w-coordinate. * @property w * @type number */ w: number; } export default VectorE4;