aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llprimitive/llprimitive.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llprimitive/llprimitive.h')
-rw-r--r--linden/indra/llprimitive/llprimitive.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/llprimitive/llprimitive.h b/linden/indra/llprimitive/llprimitive.h
index 29cd09f..1a568d1 100644
--- a/linden/indra/llprimitive/llprimitive.h
+++ b/linden/indra/llprimitive/llprimitive.h
@@ -340,14 +340,14 @@ public:
340 void setAcceleration(const F32 x, const F32 y, const F32 z) { mAcceleration.setVec(x,y,z); } 340 void setAcceleration(const F32 x, const F32 y, const F32 z) { mAcceleration.setVec(x,y,z); }
341#endif 341#endif
342 342
343 const LLPCode getPCode() const { return mPrimitiveCode; } 343 LLPCode getPCode() const { return mPrimitiveCode; }
344 const char * getPCodeString() const { return pCodeToString(mPrimitiveCode); } 344 const char * getPCodeString() const { return pCodeToString(mPrimitiveCode); }
345 const LLVector3& getAngularVelocity() const { return mAngularVelocity; } 345 const LLVector3& getAngularVelocity() const { return mAngularVelocity; }
346 const LLVector3& getVelocity() const { return mVelocity; } 346 const LLVector3& getVelocity() const { return mVelocity; }
347 const LLVector3& getAcceleration() const { return mAcceleration; } 347 const LLVector3& getAcceleration() const { return mAcceleration; }
348 const U8 getNumTEs() const { return mNumTEs; } 348 U8 getNumTEs() const { return mNumTEs; }
349 349
350 const U8 getMaterial() const { return mMaterial; } 350 U8 getMaterial() const { return mMaterial; }
351 351
352 void setVolumeType(const U8 code); 352 void setVolumeType(const U8 code);
353 U8 getVolumeType(); 353 U8 getVolumeType();