UNPKG

kld-affine

Version:

A collection of classes used in affine geometry

24 lines (19 loc) 438 B
/** * @module kld-affine */ // expose classes /** * @namespace Point2D * @implements {module:Point2D~Point2D} */ export {default as Point2D} from "./lib/Point2D.js"; /** * @namespace Vector2D * @implements {module:Vector2D~Vector2D} */ export {default as Vector2D} from "./lib/Vector2D.js"; /** * @namespace Matrix2D * @implements {module:Matrix2D~Matrix2D} */ export {default as Matrix2D} from "./lib/Matrix2D.js";