diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-03-26 20:27:14 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-03-26 20:27:14 +0100 |
commit | b0397f7273c04a3759102dec902fa69d9228927c (patch) | |
tree | 471a6c3b1f11e8eb2bbd45a22f98cefe36b33ccd /source/BlockArea.h | |
parent | BlockArea: Implemented rotation without meta manipulation (diff) | |
download | cuberite-b0397f7273c04a3759102dec902fa69d9228927c.tar cuberite-b0397f7273c04a3759102dec902fa69d9228927c.tar.gz cuberite-b0397f7273c04a3759102dec902fa69d9228927c.tar.bz2 cuberite-b0397f7273c04a3759102dec902fa69d9228927c.tar.lz cuberite-b0397f7273c04a3759102dec902fa69d9228927c.tar.xz cuberite-b0397f7273c04a3759102dec902fa69d9228927c.tar.zst cuberite-b0397f7273c04a3759102dec902fa69d9228927c.zip |
Diffstat (limited to '')
-rw-r--r-- | source/BlockArea.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source/BlockArea.h b/source/BlockArea.h index 7624dec23..76c4f749a 100644 --- a/source/BlockArea.h +++ b/source/BlockArea.h @@ -149,12 +149,12 @@ public: NIBBLETYPE a_BlockLight = 0, NIBBLETYPE a_BlockSkyLight = 0x0f
);
- /// Rotates the entire area clockwise around the Y axis
- void RotateCW(void);
-
/// Rotates the entire area counter-clockwise around the Y axis
void RotateCCW(void);
+ /// Rotates the entire area clockwise around the Y axis
+ void RotateCW(void);
+
/// Mirrors the entire area around the XY plane
void MirrorXY(void);
@@ -164,12 +164,12 @@ public: /// Mirrors the entire area around the YZ plane
void MirrorYZ(void);
- /// Rotates the entire area clockwise around the Y axis, doesn't use blockhandlers for block meta
- void RotateCWNoMeta(void);
-
/// Rotates the entire area counter-clockwise around the Y axis, doesn't use blockhandlers for block meta
void RotateCCWNoMeta(void);
+ /// Rotates the entire area clockwise around the Y axis, doesn't use blockhandlers for block meta
+ void RotateCWNoMeta(void);
+
/// Mirrors the entire area around the XY plane, doesn't use blockhandlers for block meta
void MirrorXYNoMeta(void);
|