/** * @class VectorE2 */ interface VectorE2 { /** * The Cartesian x-coordinate or abscissa. * @property x * @type number */ x: number; /** * The Cartesian y-coordinate or ordinate. * @property y * @type number */ y: number; } export default VectorE2