mirror of
https://github.com/revarbat/BOSL2.git
synced 2025-01-16 13:50:23 +01:00
xyrot(), xzrot(), yzrot() bugfix.
This commit is contained in:
parent
7bb46c774e
commit
61fa62e68a
@ -547,7 +547,7 @@ module xyrot(a=0, cp)
|
||||
if (a==0) {
|
||||
children(); // May be slightly faster?
|
||||
} else {
|
||||
mat = xyrot(a=a, p=p, cp=cp);
|
||||
mat = xyrot(a=a, cp=cp);
|
||||
multmatrix(mat) children();
|
||||
}
|
||||
}
|
||||
@ -587,7 +587,7 @@ module xzrot(a=0, cp)
|
||||
if (a==0) {
|
||||
children(); // May be slightly faster?
|
||||
} else {
|
||||
mat = xzrot(a=a, p=p, cp=cp);
|
||||
mat = xzrot(a=a, cp=cp);
|
||||
multmatrix(mat) children();
|
||||
}
|
||||
}
|
||||
@ -627,7 +627,7 @@ module yzrot(a=0, cp)
|
||||
if (a==0) {
|
||||
children(); // May be slightly faster?
|
||||
} else {
|
||||
mat = yzrot(a=a, p=p, cp=cp);
|
||||
mat = yzrot(a=a, cp=cp);
|
||||
multmatrix(mat) children();
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user