File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ library can be built for 32bit or 64bit floats, and for WASM. Dependencies are
1919[ Earcut] ( https://docs.rs/geo/latest/geo/algorithm/triangulate_earcut/trait.TriangulateEarcut.html )
2020and
2121[ constrained delaunay] ( https://docs.rs/geo/latest/geo/algorithm/triangulate_delaunay/trait.TriangulateDelaunay.html#method.constrained_triangulation )
22- algorithms used for triangulation only work in 2D, so ** csgrs** rotates
22+ algorithms used for triangulation work only in 2D, so ** csgrs** rotates
23233D polygons into 2D for triangulation then back to 3D.
2424
2525![ Example CSG output] ( docs/csg.png )
@@ -93,8 +93,8 @@ cargo build --features="wasm" --target=wasm32-unknown-unknown --release
9393 - an optional metadata field (` Option<S> ` ) also defined by you
9494
9595` Sketch<S> ` provides methods for working with 2D shapes made of points and lines.
96- You can build a ` Sketch<S> ` geo Geometries with ` Sketch::from_geo(...) ` .
97- Geometries can be open or closed, have holes, but must be planar in the XY.
96+ You can build a ` Sketch<S> ` from geo Geometries with ` Sketch::from_geo(...) ` .
97+ Geometries can be open or closed, and can have holes, but must be planar in the XY.
9898` Sketch ` 's are triangulated when exported as an STL, or when a Geometry is
9999converted into a ` Mesh<S> ` .
100100
You can’t perform that action at this time.
0 commit comments