-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* document feature booleanWithin * implement boolean within * implement boolean within * add boolean within tests * export boolean features * remove duplicate code * refactor tests * rename import * remove warnings * add source link to readme * add library declaration for turf_boolean * Code review suggestions * . * . * fix typos * fix analyzer warning due to recent dart 3.3.0 release
- Loading branch information
1 parent
f377e46
commit dafa3cd
Showing
10 changed files
with
496 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
library turf_boolean; | ||
|
||
export 'src/booleans/boolean_clockwise.dart'; | ||
export 'src/booleans/boolean_concave.dart'; | ||
export 'src/booleans/boolean_contains.dart'; | ||
export 'src/booleans/boolean_crosses.dart'; | ||
export 'src/booleans/boolean_disjoint.dart'; | ||
export 'src/booleans/boolean_equal.dart'; | ||
export 'src/booleans/boolean_intersects.dart'; | ||
// export 'src/booleans/boolean_overlap.dart'; | ||
export 'src/booleans/boolean_parallel.dart'; | ||
export 'src/booleans/boolean_point_in_polygon.dart'; | ||
export 'src/booleans/boolean_point_on_line.dart'; | ||
export 'src/booleans/boolean_touches.dart'; | ||
export 'src/booleans/boolean_valid.dart'; | ||
export 'src/booleans/boolean_within.dart'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.