mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +00:00
Corrected assertion in trapezoidal_threaded_rod()
This commit is contained in:
parent
c7073a47b2
commit
4ddb9031ce
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@ module trapezoidal_threaded_rod(
|
|||
higthr1 = ceil(higang1 / 360);
|
||||
higthr2 = ceil(higang2 / 360);
|
||||
pdepth = -min(subindex(profile,1));
|
||||
dummy1 = assert(_r1>2*pdepth) assert(_r2>2*pdepth);
|
||||
dummy1 = assert(_r1>pdepth) assert(_r2>pdepth);
|
||||
skew_mat = affine3d_skew(sxz=(_r2-_r1)/l);
|
||||
side_mat = affine3d_xrot(90) *
|
||||
affine3d_mirror([-1,1,0]) *
|
||||
|
|
Loading…
Reference in a new issue