diff options
author | Jacek Antonelli | 2008-08-15 23:45:42 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:42 -0500 |
commit | ce28e056c20bf2723f565bbf464b87781ec248a2 (patch) | |
tree | ef7b0501c4de4b631a916305cbc2a5fdc125e52d /linden/indra/llprimitive/llmaterialtable.cpp | |
parent | Second Life viewer sources 1.19.1.4b (diff) | |
download | meta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.zip meta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.tar.gz meta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.tar.bz2 meta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.tar.xz |
Second Life viewer sources 1.20.2
Diffstat (limited to 'linden/indra/llprimitive/llmaterialtable.cpp')
-rw-r--r-- | linden/indra/llprimitive/llmaterialtable.cpp | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/linden/indra/llprimitive/llmaterialtable.cpp b/linden/indra/llprimitive/llmaterialtable.cpp index 537c968..5e45e44 100644 --- a/linden/indra/llprimitive/llmaterialtable.cpp +++ b/linden/indra/llprimitive/llmaterialtable.cpp | |||
@@ -39,6 +39,54 @@ | |||
39 | 39 | ||
40 | LLMaterialTable LLMaterialTable::basic(1); | 40 | LLMaterialTable LLMaterialTable::basic(1); |
41 | 41 | ||
42 | /* | ||
43 | Old Havok 1 constants | ||
44 | |||
45 | // these are the approximately correct friction values for various materials | ||
46 | // however Havok1's friction dynamics are not very correct, so the effective | ||
47 | // friction coefficients that result from these numbers are approximately | ||
48 | // 25-50% too low, more incorrect for the lower values. | ||
49 | F32 const LLMaterialTable::FRICTION_MIN = 0.2f; | ||
50 | F32 const LLMaterialTable::FRICTION_GLASS = 0.2f; // borosilicate glass | ||
51 | F32 const LLMaterialTable::FRICTION_LIGHT = 0.2f; // | ||
52 | F32 const LLMaterialTable::FRICTION_METAL = 0.3f; // steel | ||
53 | F32 const LLMaterialTable::FRICTION_PLASTIC = 0.4f; // HDPE | ||
54 | F32 const LLMaterialTable::FRICTION_WOOD = 0.6f; // southern pine | ||
55 | F32 const LLMaterialTable::FRICTION_FLESH = 0.60f; // saltwater | ||
56 | F32 const LLMaterialTable::FRICTION_LAND = 0.78f; // dirt | ||
57 | F32 const LLMaterialTable::FRICTION_STONE = 0.8f; // concrete | ||
58 | F32 const LLMaterialTable::FRICTION_RUBBER = 0.9f; // | ||
59 | F32 const LLMaterialTable::FRICTION_MAX = 0.95f; // | ||
60 | */ | ||
61 | |||
62 | // #if LL_CURRENT_HAVOK_VERSION == LL_HAVOK_VERSION_460 | ||
63 | // Havok4 has more correct friction dynamics, however here we have to use | ||
64 | // the "incorrect" equivalents for the legacy Havok1 behavior | ||
65 | F32 const LLMaterialTable::FRICTION_MIN = 0.15f; | ||
66 | F32 const LLMaterialTable::FRICTION_GLASS = 0.13f; // borosilicate glass | ||
67 | F32 const LLMaterialTable::FRICTION_LIGHT = 0.14f; // | ||
68 | F32 const LLMaterialTable::FRICTION_METAL = 0.22f; // steel | ||
69 | F32 const LLMaterialTable::FRICTION_PLASTIC = 0.3f; // HDPE | ||
70 | F32 const LLMaterialTable::FRICTION_WOOD = 0.44f; // southern pine | ||
71 | F32 const LLMaterialTable::FRICTION_FLESH = 0.46f; // saltwater | ||
72 | F32 const LLMaterialTable::FRICTION_LAND = 0.58f; // dirt | ||
73 | F32 const LLMaterialTable::FRICTION_STONE = 0.6f; // concrete | ||
74 | F32 const LLMaterialTable::FRICTION_RUBBER = 0.67f; // | ||
75 | F32 const LLMaterialTable::FRICTION_MAX = 0.71f; // | ||
76 | // #endif | ||
77 | |||
78 | F32 const LLMaterialTable::RESTITUTION_MIN = 0.02f; | ||
79 | F32 const LLMaterialTable::RESTITUTION_LAND = LLMaterialTable::RESTITUTION_MIN; | ||
80 | F32 const LLMaterialTable::RESTITUTION_FLESH = 0.2f; // saltwater | ||
81 | F32 const LLMaterialTable::RESTITUTION_STONE = 0.4f; // concrete | ||
82 | F32 const LLMaterialTable::RESTITUTION_METAL = 0.4f; // steel | ||
83 | F32 const LLMaterialTable::RESTITUTION_WOOD = 0.5f; // southern pine | ||
84 | F32 const LLMaterialTable::RESTITUTION_GLASS = 0.7f; // borosilicate glass | ||
85 | F32 const LLMaterialTable::RESTITUTION_PLASTIC = 0.7f; // HDPE | ||
86 | F32 const LLMaterialTable::RESTITUTION_LIGHT = 0.7f; // | ||
87 | F32 const LLMaterialTable::RESTITUTION_RUBBER = 0.9f; // | ||
88 | F32 const LLMaterialTable::RESTITUTION_MAX = 0.95f; | ||
89 | |||
42 | F32 const LLMaterialTable::DEFAULT_FRICTION = 0.5f; | 90 | F32 const LLMaterialTable::DEFAULT_FRICTION = 0.5f; |
43 | F32 const LLMaterialTable::DEFAULT_RESTITUTION = 0.4f; | 91 | F32 const LLMaterialTable::DEFAULT_RESTITUTION = 0.4f; |
44 | 92 | ||