aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden
diff options
context:
space:
mode:
authorJacek Antonelli2009-01-30 19:35:10 -0600
committerJacek Antonelli2009-01-30 19:35:10 -0600
commite581937fe271e8f093b59e4f3680f0085e7cd9c4 (patch)
tree5428fe3769408b61ebd0ad8911863903788ebf8f /linden
parentMade build math taper/hole size correct for box/etc. [#62] (diff)
downloadmeta-impy-e581937fe271e8f093b59e4f3680f0085e7cd9c4.zip
meta-impy-e581937fe271e8f093b59e4f3680f0085e7cd9c4.tar.gz
meta-impy-e581937fe271e8f093b59e4f3680f0085e7cd9c4.tar.bz2
meta-impy-e581937fe271e8f093b59e4f3680f0085e7cd9c4.tar.xz
Tweaked build math variable names for consistency.
X/Y/Z go at end of variables, e.g. XP --> PX.
Diffstat (limited to 'linden')
-rw-r--r--linden/indra/llmath/llcalc.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/linden/indra/llmath/llcalc.cpp b/linden/indra/llmath/llcalc.cpp
index ff3f91f..526a116 100644
--- a/linden/indra/llmath/llcalc.cpp
+++ b/linden/indra/llmath/llcalc.cpp
@@ -19,15 +19,15 @@
19 19
20 20
21// Variable names for use in the build floater 21// Variable names for use in the build floater
22const char* LLCalc::X_POS = "XP"; 22const char* LLCalc::X_POS = "PX";
23const char* LLCalc::Y_POS = "YP"; 23const char* LLCalc::Y_POS = "PY";
24const char* LLCalc::Z_POS = "ZP"; 24const char* LLCalc::Z_POS = "PZ";
25const char* LLCalc::X_SCALE = "XS"; 25const char* LLCalc::X_SCALE = "SX";
26const char* LLCalc::Y_SCALE = "YS"; 26const char* LLCalc::Y_SCALE = "SY";
27const char* LLCalc::Z_SCALE = "ZS"; 27const char* LLCalc::Z_SCALE = "SZ";
28const char* LLCalc::X_ROT = "XR"; 28const char* LLCalc::X_ROT = "RX";
29const char* LLCalc::Y_ROT = "YR"; 29const char* LLCalc::Y_ROT = "RY";
30const char* LLCalc::Z_ROT = "ZR"; 30const char* LLCalc::Z_ROT = "RZ";
31const char* LLCalc::HOLLOW = "HLW"; 31const char* LLCalc::HOLLOW = "HLW";
32const char* LLCalc::CUT_BEGIN = "CB"; 32const char* LLCalc::CUT_BEGIN = "CB";
33const char* LLCalc::CUT_END = "CE"; 33const char* LLCalc::CUT_END = "CE";
@@ -35,15 +35,15 @@ const char* LLCalc::PATH_BEGIN = "PB";
35const char* LLCalc::PATH_END = "PE"; 35const char* LLCalc::PATH_END = "PE";
36const char* LLCalc::TWIST_BEGIN = "TB"; 36const char* LLCalc::TWIST_BEGIN = "TB";
37const char* LLCalc::TWIST_END = "TE"; 37const char* LLCalc::TWIST_END = "TE";
38const char* LLCalc::X_SHEAR = "XSH"; 38const char* LLCalc::X_SHEAR = "SHX";
39const char* LLCalc::Y_SHEAR = "YSH"; 39const char* LLCalc::Y_SHEAR = "SHY";
40const char* LLCalc::X_TAPER = "XTP"; 40const char* LLCalc::X_TAPER = "TPX";
41const char* LLCalc::Y_TAPER = "YTP"; 41const char* LLCalc::Y_TAPER = "TPY";
42const char* LLCalc::RADIUS_OFFSET = "ROF"; 42const char* LLCalc::RADIUS_OFFSET = "ROF";
43const char* LLCalc::REVOLUTIONS = "REV"; 43const char* LLCalc::REVOLUTIONS = "REV";
44const char* LLCalc::SKEW = "SKW"; 44const char* LLCalc::SKEW = "SKW";
45const char* LLCalc::X_HOLE = "XHL"; 45const char* LLCalc::X_HOLE = "HLX";
46const char* LLCalc::Y_HOLE = "YHL"; 46const char* LLCalc::Y_HOLE = "HLY";
47const char* LLCalc::TEX_U_SCALE = "TSU"; 47const char* LLCalc::TEX_U_SCALE = "TSU";
48const char* LLCalc::TEX_V_SCALE = "TSV"; 48const char* LLCalc::TEX_V_SCALE = "TSV";
49const char* LLCalc::TEX_U_OFFSET = "TOU"; 49const char* LLCalc::TEX_U_OFFSET = "TOU";