Fixed spheroid() orig and aligned styles.

This commit is contained in:
Garth Minette
2020-10-15 19:14:14 -07:00
parent 4fc03b18e6
commit 2bf6c34564
4 changed files with 10 additions and 10 deletions

View File

@@ -269,18 +269,18 @@ module stroke(
if (hull) {
hull(){
multmatrix(rotmats[i]) {
sphere(d=widths[i]);
sphere(d=widths[i],style="aligned");
}
multmatrix(rotmats[i-1]) {
sphere(d=widths[i]);
sphere(d=widths[i],style="aligned");
}
}
} else {
multmatrix(rotmats[i]) {
sphere(d=widths[i]);
sphere(d=widths[i],style="aligned");
}
multmatrix(rotmats[i-1]) {
sphere(d=widths[i]);
sphere(d=widths[i],style="aligned");
}
}
}