Skip to content

Commit

Permalink
Exported type not found issue #165 - export constants OVERLAP_SAME, O…
Browse files Browse the repository at this point in the history
…VERLAP_OPPOSITE
  • Loading branch information
alexbol99 committed Mar 29, 2024
1 parent 4c85cec commit 4f967d4
Show file tree
Hide file tree
Showing 56 changed files with 521 additions and 472 deletions.
2 changes: 2 additions & 0 deletions dist/main.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -8837,6 +8837,8 @@ exports.Matrix = Matrix;
exports.Multiline = Multiline;
exports.ORIENTATION = ORIENTATION;
exports.OUTSIDE = OUTSIDE$1;
exports.OVERLAP_OPPOSITE = OVERLAP_OPPOSITE$1;
exports.OVERLAP_SAME = OVERLAP_SAME$1;
exports.PlanarSet = PlanarSet;
exports.Point = Point$1;
exports.Polygon = Polygon;
Expand Down
2 changes: 1 addition & 1 deletion dist/main.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8815,4 +8815,4 @@ Flatten.Distance = Distance;
Flatten.BooleanOperations = BooleanOperations;
Flatten.Relations = Relations;

export { Arc, BOUNDARY$1 as BOUNDARY, BooleanOperations, Box, CCW, CW, Circle$1 as Circle, Distance, Edge, Errors, Face, INSIDE$2 as INSIDE, Inversion, Line$1 as Line, Matrix, Multiline, ORIENTATION, OUTSIDE$1 as OUTSIDE, PlanarSet, Point$1 as Point, Polygon, Ray, Relations, Segment, smart_intersections as SmartIntersections, Utils$1 as Utils, Vector$1 as Vector, arc, box, circle, Flatten as default, inversion, line, matrix, multiline, point, polygon, ray, ray_shoot, segment, vector$1 as vector };
export { Arc, BOUNDARY$1 as BOUNDARY, BooleanOperations, Box, CCW, CW, Circle$1 as Circle, Distance, Edge, Errors, Face, INSIDE$2 as INSIDE, Inversion, Line$1 as Line, Matrix, Multiline, ORIENTATION, OUTSIDE$1 as OUTSIDE, OVERLAP_OPPOSITE$1 as OVERLAP_OPPOSITE, OVERLAP_SAME$1 as OVERLAP_SAME, PlanarSet, Point$1 as Point, Polygon, Ray, Relations, Segment, smart_intersections as SmartIntersections, Utils$1 as Utils, Vector$1 as Vector, arc, box, circle, Flatten as default, inversion, line, matrix, multiline, point, polygon, ray, ray_shoot, segment, vector$1 as vector };
2 changes: 2 additions & 0 deletions dist/main.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -8839,6 +8839,8 @@
exports.Multiline = Multiline;
exports.ORIENTATION = ORIENTATION;
exports.OUTSIDE = OUTSIDE$1;
exports.OVERLAP_OPPOSITE = OVERLAP_OPPOSITE$1;
exports.OVERLAP_SAME = OVERLAP_SAME$1;
exports.PlanarSet = PlanarSet;
exports.Point = Point$1;
exports.Polygon = Polygon;
Expand Down
4 changes: 2 additions & 2 deletions docs/Arc.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/Box.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/Circle.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/CircularLinkedList.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/DE9IM.html

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions docs/Edge.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/Errors.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/Face.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/Inversion.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/Line.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/LinkedList.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/Matrix.html

Large diffs are not rendered by default.

116 changes: 100 additions & 16 deletions docs/Multiline.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/PlanarSet.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/Point.html

Large diffs are not rendered by default.

232 changes: 24 additions & 208 deletions docs/Polygon.html

Large diffs are not rendered by default.

189 changes: 174 additions & 15 deletions docs/Ray.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/Segment.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/Shape.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/Vector.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/algorithms_boolean_op.js.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/algorithms_distance.js.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/algorithms_ray_shooting.js.html

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions docs/algorithms_relation.js.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/classes_arc.js.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/classes_box.js.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/classes_circle.js.html

Large diffs are not rendered by default.

16 changes: 12 additions & 4 deletions docs/classes_edge.js.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/classes_face.js.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/classes_inversion.js.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/classes_line.js.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/classes_matrix.js.html

Large diffs are not rendered by default.

39 changes: 33 additions & 6 deletions docs/classes_multiline.js.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/classes_point.js.html

Large diffs are not rendered by default.

176 changes: 57 additions & 119 deletions docs/classes_polygon.js.html

Large diffs are not rendered by default.

17 changes: 15 additions & 2 deletions docs/classes_ray.js.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/classes_segment.js.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/classes_shape.js.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/classes_vector.js.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/data_structures_circular_linked_list.js.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/data_structures_de9im.js.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/data_structures_linked_list.js.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/data_structures_planar_set.js.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/global.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/module-BooleanOperations.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/module-RayShoot.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/module-Relation.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/utils_constants.js.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/utils_errors.js.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/utils_utils.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ export {SmartIntersections};
Flatten.BooleanOperations = BooleanOperations;
Flatten.Relations = Relations;

export {CCW, CW, ORIENTATION, INSIDE, OUTSIDE, BOUNDARY} from './src/utils/constants';
export {CCW, CW, ORIENTATION, INSIDE, OUTSIDE, BOUNDARY, OVERLAP_SAME, OVERLAP_OPPOSITE} from './src/utils/constants';

export default Flatten;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flatten-js/core",
"version": "1.4.8",
"version": "1.5.0",
"description": "Javascript library for 2d geometry",
"main": "dist/main.cjs",
"umd:main": "dist/main.umd.js",
Expand Down

0 comments on commit 4f967d4

Please sign in to comment.