-
Notifications
You must be signed in to change notification settings - Fork 55
/
index.js
80 lines (64 loc) · 1.45 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
/**
* @module kld-intersections
*/
export {default as Intersection} from "./lib/Intersection.js";
/**
* @deprecated Use ShapeInfo instead
*/
export {default as IntersectionArgs} from "./lib/ShapeInfo.js";
/**
* @namespace ShapeInfo
* @implements {module:Shapes~ShapeInfo}
*/
export {default as ShapeInfo} from "./lib/ShapeInfo.js";
/**
* @namespace Shapes
* @implements {module:Shapes~Shapes}
*/
export {default as Shapes} from "./lib/Shapes.js";
/**
* @namespace AffineShapes
* @implements {module:AffineShapes~AffineShapes}
*/
export {default as AffineShapes} from "./lib/AffineShapes.js";
/**
* @namespace SvgShapes
* @implements {module:SvgShapes~SvgShapes}
*/
export {default as SvgShapes} from "./lib/SvgShapes.js";
/**
* @namespace IntersectionQuery
* @implements {module:IntersectionQuery~IntersectionQuery}
*/
export {default as IntersectionQuery} from "./lib/IntersectionQuery.js";
// Expose affine module classes
/**
* @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
*/