https://github.com/j-f-liu/geom3d
Data structures and algorithms for 3D geometric modeling.
https://github.com/j-f-liu/geom3d
Last synced: about 1 month ago
JSON representation
Data structures and algorithms for 3D geometric modeling.
- Host: GitHub
- URL: https://github.com/j-f-liu/geom3d
- Owner: J-F-Liu
- License: mit
- Created: 2021-05-22T05:11:07.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-01-02T03:19:33.000Z (over 1 year ago)
- Last Synced: 2025-04-12T21:13:16.185Z (about 1 month ago)
- Language: Rust
- Size: 69.3 KB
- Stars: 40
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# geom3d
[](https://crates.io/crates/geom3d)
[](https://docs.rs/geom3d)Data structures and algorithms for 3D geometric modeling.
Features:
- Bezier curve and surface
- B-Spline curve and surface
- Spin surface
- Sweep surface### References
- 1997,The NURBS Book,Les Piegl,Wayne Tiller
- 2002,Triangulation by Ear Clipping,David Eberly
- 2013,Dynamic grid for mesh generation by the advancing front method,S.H. Lo
- 1998,Delaunay Triangulation and Meshing: Application to Finite Elements,PL George,H Borouchaki### Similar projects
- [Open CASCADE Technology](https://dev.opencascade.org/doc/overview/html/index.html)
- [NURBS-Python](https://nurbs-python.readthedocs.io/)
- [Truck](https://github.com/ricosjp/truck)