1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-12 01:34:12 +02:00
This commit is contained in:
Justin Lin
2021-02-09 10:46:16 +08:00
parent 333fbfc728
commit d2415fbf93
3 changed files with 2 additions and 2 deletions

1
src/angle_between.scad Normal file
View File

@@ -0,0 +1 @@
function angle_between(vt1, vt2) = acos((vt1 * vt2) / (norm(vt1) * norm(vt2)));

View File

@@ -1 +0,0 @@
function angles_between(vt1, vt2) = acos((vt1 * vt2) / (norm(vt1) * norm(vt2)));

View File

@@ -10,7 +10,7 @@ dotSCAD 3.0 Dev
New modules/functions
- `angles_between`
- `angle_between`
- `spherical_coordinate`
- `util/every`
- `util/some`