diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-01-27 16:51:34 -0800 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-01-27 16:51:34 -0800 |
commit | a9520ba18fcecf2b0acd74968896ce3dd33308bb (patch) | |
tree | 2b122808c1f6ad5d744f06fddf4db614fa79a3b3 /indra/newview/llpathfindinglinksets.h | |
parent | 891e99058bcc587cd6a4b4d3eece134cfddd0883 (diff) |
PATH-187 : Renaming the walkability parameters to be more descriptive.
Diffstat (limited to 'indra/newview/llpathfindinglinksets.h')
-rw-r--r-- | indra/newview/llpathfindinglinksets.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/indra/newview/llpathfindinglinksets.h b/indra/newview/llpathfindinglinksets.h index be909677b6..42f19b5872 100644 --- a/indra/newview/llpathfindinglinksets.h +++ b/indra/newview/llpathfindinglinksets.h @@ -67,17 +67,17 @@ public: BOOL isPhantom() const;
void setPhantom(BOOL pIsPhantom);
- S32 getA() const;
- void setA(S32 pA);
+ S32 getWalkabilityCoefficientA() const;
+ void setWalkabilityCoefficientA(S32 pA);
- S32 getB() const;
- void setB(S32 pB);
+ S32 getWalkabilityCoefficientB() const;
+ void setWalkabilityCoefficientB(S32 pB);
- S32 getC() const;
- void setC(S32 pC);
+ S32 getWalkabilityCoefficientC() const;
+ void setWalkabilityCoefficientC(S32 pC);
- S32 getD() const;
- void setD(S32 pD);
+ S32 getWalkabilityCoefficientD() const;
+ void setWalkabilityCoefficientD(S32 pD);
LLSD getAlteredFields(EPathState pPathState, S32 pA, S32 pB, S32 pC, S32 pD, BOOL pIsPhantom) const;
@@ -97,10 +97,10 @@ private: #ifdef XXX_STINSON_WALKABILITY_COEFFICIENTS_TYPE_CHANGE
BOOL mIsWalkabilityCoefficientsF32;
#endif // XXX_STINSON_WALKABILITY_COEFFICIENTS_TYPE_CHANGE
- S32 mA;
- S32 mB;
- S32 mC;
- S32 mD;
+ S32 mWalkabilityCoefficientA;
+ S32 mWalkabilityCoefficientB;
+ S32 mWalkabilityCoefficientC;
+ S32 mWalkabilityCoefficientD;
};
#endif // LL_LLFLOATERPATHFINDINGLINKSETS_H
|