aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llmath/llvolume.cpp
diff options
context:
space:
mode:
authorMcCabe Maxsted2010-04-18 12:38:22 -0700
committerMcCabe Maxsted2010-04-18 12:38:22 -0700
commit11295915dbe05a6237ca84b5a07c82459dd4f9e0 (patch)
treed815f912671c76f36d86e63b87b20d2f443b5284 /linden/indra/llmath/llvolume.cpp
parentMerge commit 'armin/beta2-bugfixes' into 1.3-beta2bugfixes (diff)
downloadmeta-impy-11295915dbe05a6237ca84b5a07c82459dd4f9e0.zip
meta-impy-11295915dbe05a6237ca84b5a07c82459dd4f9e0.tar.gz
meta-impy-11295915dbe05a6237ca84b5a07c82459dd4f9e0.tar.bz2
meta-impy-11295915dbe05a6237ca84b5a07c82459dd4f9e0.tar.xz
Use opensim limits for hollow (99) and hole (0.01). Need to add option to enable in the ui
Diffstat (limited to '')
-rw-r--r--linden/indra/llmath/llvolume.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/llmath/llvolume.cpp b/linden/indra/llmath/llvolume.cpp
index a1cfe1d..4c94a52 100644
--- a/linden/indra/llmath/llvolume.cpp
+++ b/linden/indra/llmath/llvolume.cpp
@@ -56,7 +56,7 @@ const F32 CUT_MAX = 1.f;
56const F32 MIN_CUT_DELTA = 0.02f; 56const F32 MIN_CUT_DELTA = 0.02f;
57 57
58const F32 HOLLOW_MIN = 0.f; 58const F32 HOLLOW_MIN = 0.f;
59const F32 HOLLOW_MAX = 0.95f; 59const F32 HOLLOW_MAX = 0.99f;
60const F32 HOLLOW_MAX_SQUARE = 0.7f; 60const F32 HOLLOW_MAX_SQUARE = 0.7f;
61 61
62const F32 TWIST_MIN = -1.f; 62const F32 TWIST_MIN = -1.f;
@@ -65,10 +65,10 @@ const F32 TWIST_MAX = 1.f;
65const F32 RATIO_MIN = 0.f; 65const F32 RATIO_MIN = 0.f;
66const F32 RATIO_MAX = 2.f; // Tom Y: Inverted sense here: 0 = top taper, 2 = bottom taper 66const F32 RATIO_MAX = 2.f; // Tom Y: Inverted sense here: 0 = top taper, 2 = bottom taper
67 67
68const F32 HOLE_X_MIN= 0.05f; 68const F32 HOLE_X_MIN= 0.01f;
69const F32 HOLE_X_MAX= 1.0f; 69const F32 HOLE_X_MAX= 1.0f;
70 70
71const F32 HOLE_Y_MIN= 0.05f; 71const F32 HOLE_Y_MIN= 0.01f;
72const F32 HOLE_Y_MAX= 0.5f; 72const F32 HOLE_Y_MAX= 0.5f;
73 73
74const F32 SHEAR_MIN = -0.5f; 74const F32 SHEAR_MIN = -0.5f;