From f2f0abc8d93c22fbf42973263c9ca2d39fc8d6b1 Mon Sep 17 00:00:00 2001 From: SenseiKiwi Date: Mon, 15 Jul 2013 21:38:52 -0400 Subject: [PATCH] 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. --- StevenDimDoors/mod_pocketDim/SchematicLoader.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/StevenDimDoors/mod_pocketDim/SchematicLoader.java b/StevenDimDoors/mod_pocketDim/SchematicLoader.java index f7f4038..9622334 100644 --- a/StevenDimDoors/mod_pocketDim/SchematicLoader.java +++ b/StevenDimDoors/mod_pocketDim/SchematicLoader.java @@ -1156,10 +1156,6 @@ public class SchematicLoader } 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 rz; switch (angle)