UNPKG

@jscad/modeling

Version:

Constructive Solid Geometry (CSG) Library for JSCAD

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