Minor Change

Removed a comment from SchematicLoader.transformPoint() that is no
longer relevant. It refers to counterclockwise rotations even though our
rotations are commented as clockwise now.
This commit is contained in:
SenseiKiwi
2013-07-15 21:38:52 -04:00
parent f350b0d17c
commit f2f0abc8d9

View File

@@ -1156,10 +1156,6 @@ public class SchematicLoader
} }
angle = angle % 4; angle = angle % 4;
//Rotations are considered in counterclockwise form because coordinate systems are
//often assumed to be right-handed and convenient formulas are available for
//common counterclockwise rotations.
//Reference: http://en.wikipedia.org/wiki/Rotation_matrix#Common_rotations
int rx; int rx;
int rz; int rz;
switch (angle) switch (angle)