1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-03-14 02:59:42 +01:00
This commit is contained in:
Justin Lin 2021-02-11 15:55:41 +08:00
parent d007f09ac5
commit b342fecb6f
2 changed files with 15 additions and 6 deletions

View File

@ -131,22 +131,31 @@ These examples incubate dotSCAD and dotSCAD refactors these examples. See [examp
- [path_extrude](https://openhome.cc/eGossip/OpenSCAD/lib2x-path_extrude.html)
- [ring_extrude](https://openhome.cc/eGossip/OpenSCAD/lib2x-ring_extrude.html)
- [sphere_spiral_extrude](https://openhome.cc/eGossip/OpenSCAD/lib2x-sphere_spiral_extrude.html)
- `util/degrees`
- `util/radians`
- `util/angle_between`
- `util/polar_coordinate`
- `util/spherical_coordinate`
### Util
- util/angle_between
- [util/bsearch](https://openhome.cc/eGossip/OpenSCAD/lib3x-bsearch.html)
- [util/choose](https://openhome.cc/eGossip/OpenSCAD/lib3x-choose.html)
- [util/dedup](https://openhome.cc/eGossip/OpenSCAD/lib3x-dedup.html)
- util/degrees
- [util/every](https://openhome.cc/eGossip/OpenSCAD/lib3x-every.html)
- [util/fibseq](https://openhome.cc/eGossip/OpenSCAD/lib3x-fibseq.html)
- [util/flat](https://openhome.cc/eGossip/OpenSCAD/lib3x-flat.html)
- [util/has](https://openhome.cc/eGossip/OpenSCAD/lib3x-has.html)
- [util/lerp](https://openhome.cc/eGossip/OpenSCAD/lib3x-lerp.html)
- [util/parse_number](https://openhome.cc/eGossip/OpenSCAD/lib3x-parse_number.html)
- util/polar_coordinate
- util/radians
- [util/rand](https://openhome.cc/eGossip/OpenSCAD/lib3x-rand.html)
- [util/reverse](https://openhome.cc/eGossip/OpenSCAD/lib3x-reverse.html)
- [util/slice](https://openhome.cc/eGossip/OpenSCAD/lib3x-slice.html)
- [util/some](https://openhome.cc/eGossip/OpenSCAD/lib3x-some.html)
- [util/sort](https://openhome.cc/eGossip/OpenSCAD/lib3x-sort.html)
- util/spherical_coordinate
- [util/sub_str](https://openhome.cc/eGossip/OpenSCAD/lib3x-sub_str.html)
- [util/split_str](https://openhome.cc/eGossip/OpenSCAD/lib3x-split_str.html)
- [util/sum](https://openhome.cc/eGossip/OpenSCAD/lib3x-sum.html)

View File

@ -12,11 +12,11 @@ dotSCAD 3.0 Dev
New modules/functions
- `degrees`
- `radians`
- `angle_between`
- `polar_coordinate`
- `spherical_coordinate`
- `util/degrees`
- `util/radians`
- `util/angle_between`
- `util/polar_coordinate`
- `util/spherical_coordinate`
- `util/every`
- `util/some`