UNPKG

sylvester-es6

Version:

Fork of the famous Sylvester vector, matrix and geometry library. Rewritten in ES6 and including the glUtils.js add-ons.

25 lines (22 loc) 612 B
"use strict"; //Classes export { CircularLinkedList } from "./CircularLinkedList"; export { Line } from "./Line"; export { LineSegment } from "./LineSegment"; export { LinkedList } from "./LinkedList"; export { LinkedListNode } from "./LinkedListNode"; export { Matrix } from "./Matrix"; export { Plane } from "./Plane"; export { Polygon } from "./Polygon"; export { Vector } from "./Vector"; export { Vertex } from "./Vertex"; //Utils export { mht, makeLookAt, makePerspective, makeFrustum, makeOrtho } from "./Utils"; //Library precision export { PRECISION } from "./PRECISION";