summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorLoren Shih <seraph@lindenlab.com>2011-03-18 10:31:38 -0400
committerLoren Shih <seraph@lindenlab.com>2011-03-18 10:31:38 -0400
commit9560faa1496790334becbe819b6ced6f5b17cf97 (patch)
tree93724f42358dd7eb1d28d32d5e66a0d355ebb6dc /indra
parentc754a7c0000d6f1defd58d7e8b4587d46ee1defe (diff)
Comments.
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llphysicsmotion.cpp25
1 files changed, 24 insertions, 1 deletions
diff --git a/indra/newview/llphysicsmotion.cpp b/indra/newview/llphysicsmotion.cpp
index 5de1f7e145..01b3ebe1f0 100644
--- a/indra/newview/llphysicsmotion.cpp
+++ b/indra/newview/llphysicsmotion.cpp
@@ -59,7 +59,30 @@ inline F64 llsgn(const F64 a)
class LLPhysicsMotion
{
public:
- LLPhysicsMotion(const std::string &param_user_name,
+ /*
+ param_user_name: The param (if any) that the user sees and controls. This is what
+ the particular body part would look like without physics. For example, it may be
+ the breast gravity. This param's value should will not be altered, and is only
+ used as a reference point for the rest position of the body party. This is usually
+ a driver param and the param that physics is altering is the driven param.
+ If this is left blank, that means that the physics is affecting a param that is
+ not exposed to the user.
+
+ param_driven_name: The param whose value is actually set by the physics.
+
+ joint_name: The joint that the body part is attached to. The joint is
+ used to determine the orientation (rotation) of the body part.
+
+ character: The avatar that this physics affects.
+
+ motion_direction_vec: The direction (in world coordinates) that determines the
+ motion. For example, (0,0,1) is up-down, and means that up-down motion is what
+ determines how this joint moves.
+
+ controllers: The various settings (e.g. spring force, mass) that determine how
+ the body part behaves.
+ */
+ LLPhysicsMotion(const std::string &param_user_name,
const std::string &param_driven_name,
const std::string &joint_name,
LLCharacter *character,