File tree 1 file changed +37
-0
lines changed
1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change @@ -51,3 +51,40 @@ export {default as QuadraticBezier2D} from "./lib/QuadraticBezier2D.js";
51
51
* @implements {module:Rectangle2D~Rectangle2D}
52
52
*/
53
53
export { default as Rectangle2D } from "./lib/Rectangle2D.js" ;
54
+
55
+ /**
56
+ * @external Point2D
57
+ */
58
+
59
+ /**
60
+ * @external Vector2D
61
+ */
62
+
63
+ /**
64
+ * @external Matrix2D
65
+ */
66
+
67
+ /**
68
+ * @class Point2D
69
+ * @memberof module:kld-intersections
70
+ * @implements {external:Point2D}
71
+ */
72
+ export { Point2D } from "kld-affine" ;
73
+
74
+ /**
75
+ * @class Vector2D
76
+ * @memberof module:kld-intersections
77
+ * @implements {external:Vector2D}
78
+ */
79
+ export { Vector2D } from "kld-affine" ;
80
+
81
+ /**
82
+ * @class Matrix2D
83
+ * @memberof module:kld-intersections
84
+ * @implements {external:Matrix2D}
85
+ */
86
+ export { Matrix2D } from "kld-affine" ;
87
+
88
+ /**
89
+ * @external Polynomial
90
+ */
You can’t perform that action at this time.
0 commit comments