-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
90 lines (74 loc) · 1.69 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/**
* @module kld-contours
*/
/**
* @namespace BoundingBox2D
* @implements {module:BoundingBox2D~BoundingBox2D}
*/
export {default as BoundingBox2D} from "./lib/BoundingBox2D.js";
// Contours
/**
* @namespace Circle2D
* @implements {module:Circle2D~Circle2D}
*/
export {default as Circle2D} from "./lib/Circle2D.js";
/**
* @namespace CubicBezier2D
* @implements {module:CubicBezier2D~CubicBezier2D}
*/
export {default as CubicBezier2D} from "./lib/CubicBezier2D.js";
/**
* @namespace Ellipse2D
* @implements {module:Ellipse2D~Ellipse2D}
*/
export {default as Ellipse2D} from "./lib/Ellipse2D.js";
/**
* @namespace Line2D
* @implements {module:Line2D~Line2D}
*/
export {default as Line2D} from "./lib/Line2D.js";
/**
* @namespace Polygon2D
* @implements {module:Polygon2D~Polygon2D}
*/
export {default as Polygon2D} from "./lib/Polygon2D.js";
/**
* @namespace QuadraticBezier2D
* @implements {module:QuadraticBezier2D~QuadraticBezier2D}
*/
export {default as QuadraticBezier2D} from "./lib/QuadraticBezier2D.js";
/**
* @namespace Rectangle2D
* @implements {module:Rectangle2D~Rectangle2D}
*/
export {default as Rectangle2D} from "./lib/Rectangle2D.js";
/**
* @external Point2D
*/
/**
* @external Vector2D
*/
/**
* @external Matrix2D
*/
/**
* @class Point2D
* @memberof module:kld-intersections
* @implements {external:Point2D}
*/
export {Point2D} from "kld-affine";
/**
* @class Vector2D
* @memberof module:kld-intersections
* @implements {external:Vector2D}
*/
export {Vector2D} from "kld-affine";
/**
* @class Matrix2D
* @memberof module:kld-intersections
* @implements {external:Matrix2D}
*/
export {Matrix2D} from "kld-affine";
/**
* @external Polynomial
*/