UNPKG

@jscad/modeling

Version:

Constructive Solid Geometry (CSG) Library for JSCAD

16 lines (13 loc) 282 B
/** * Represents a two dimensional vector. * See fromValues(). * @typedef {Array} vec2 */ /** * Creates a new vector, initialized to [0,0]. * * @returns {vec2} a new vector * @alias module:modeling/maths/vec2.create */ const create = () => [0, 0] module.exports = create