Material class to represent a set of surface properties. More...
#include <PxMaterial.h>
Public Member Functions | |
virtual void | release ()=0 |
Decrements the reference count of a material and releases it if the new reference count is zero. More... | |
virtual PxU32 | getReferenceCount () const =0 |
Returns the reference count of the material. More... | |
virtual void | acquireReference ()=0 |
Acquires a counted reference to a material. More... | |
virtual void | setDynamicFriction (PxReal coef)=0 |
Sets the coefficient of dynamic friction. More... | |
virtual PxReal | getDynamicFriction () const =0 |
Retrieves the DynamicFriction value. More... | |
virtual void | setStaticFriction (PxReal coef)=0 |
Sets the coefficient of static friction. More... | |
virtual PxReal | getStaticFriction () const =0 |
Retrieves the coefficient of static friction. More... | |
virtual void | setRestitution (PxReal rest)=0 |
Sets the coefficient of restitution. More... | |
virtual PxReal | getRestitution () const =0 |
Retrieves the coefficient of restitution. More... | |
virtual void | setFlag (PxMaterialFlag::Enum flag, bool b)=0 |
Raises or clears a particular material flag. More... | |
virtual void | setFlags (PxMaterialFlags flags)=0 |
sets all the material flags. More... | |
virtual PxMaterialFlags | getFlags () const =0 |
Retrieves the flags. See PxMaterialFlag. More... | |
virtual void | setFrictionCombineMode (PxCombineMode::Enum combMode)=0 |
Sets the friction combine mode. More... | |
virtual PxCombineMode::Enum | getFrictionCombineMode () const =0 |
Retrieves the friction combine mode. More... | |
virtual void | setRestitutionCombineMode (PxCombineMode::Enum combMode)=0 |
Sets the restitution combine mode. More... | |
virtual PxCombineMode::Enum | getRestitutionCombineMode () const =0 |
Retrieves the restitution combine mode. More... | |
virtual const char * | getConcreteTypeName () const |
Returns string name of dynamic type. More... | |
Public Member Functions inherited from PxBase | |
template<class T > | |
T * | is () |
template<class T > | |
const T * | is () const |
PX_FORCE_INLINE PxType | getConcreteType () const |
Returns concrete type of object. More... | |
PX_FORCE_INLINE void | setBaseFlag (PxBaseFlag::Enum flag, bool value) |
Set PxBaseFlag. More... | |
PX_FORCE_INLINE void | setBaseFlags (PxBaseFlags inFlags) |
Set PxBaseFlags. More... | |
PX_FORCE_INLINE PxBaseFlags | getBaseFlags () const |
Returns PxBaseFlags. More... | |
virtual bool | isReleasable () const |
Whether the object is subordinate. More... | |
Public Attributes | |
void * | userData |
user can assign this to whatever, usually to create a 1:1 relationship with a user object. More... | |
Protected Member Functions | |
PX_INLINE | PxMaterial (PxType concreteType, PxBaseFlags baseFlags) |
PX_INLINE | PxMaterial (PxBaseFlags baseFlags) |
virtual | ~PxMaterial () |
virtual bool | isKindOf (const char *name) const |
Returns whether a given type name matches with the type of this instance. More... | |
Protected Member Functions inherited from PxBase | |
PX_INLINE | PxBase (PxType concreteType, PxBaseFlags baseFlags) |
Constructor setting concrete type and base flags. More... | |
PX_INLINE | PxBase (PxBaseFlags baseFlags) |
Deserialization constructor setting base flags. More... | |
virtual | ~PxBase () |
Destructor. More... | |
template<class T > | |
bool | typeMatch () const |
Additional Inherited Members | |
Protected Attributes inherited from PxBase | |
PxType | mConcreteType |
PxBaseFlags | mBaseFlags |
Material class to represent a set of surface properties.
|
inlineprotected |
|
inlineprotected |
|
inlineprotectedvirtual |
|
pure virtual |
Acquires a counted reference to a material.
This method increases the reference count of the material by 1. Decrement the reference count by calling release()
|
inlinevirtual |
Returns string name of dynamic type.
Implements PxBase.
|
pure virtual |
Retrieves the DynamicFriction value.
|
pure virtual |
Retrieves the flags. See PxMaterialFlag.
|
pure virtual |
Retrieves the friction combine mode.
|
pure virtual |
Returns the reference count of the material.
At creation, the reference count of the material is 1. Every shape referencing this material increments the count by 1. When the reference count reaches 0, and only then, the material gets destroyed automatically.
|
pure virtual |
Retrieves the coefficient of restitution.
See setRestitution.
|
pure virtual |
Retrieves the restitution combine mode.
See setRestitutionCombineMode.
|
pure virtual |
Retrieves the coefficient of static friction.
|
inlineprotectedvirtual |
Returns whether a given type name matches with the type of this instance.
Reimplemented from PxBase.
References PxBase::isKindOf().
|
pure virtual |
Decrements the reference count of a material and releases it if the new reference count is zero.
Implements PxBase.
|
pure virtual |
Sets the coefficient of dynamic friction.
The coefficient of dynamic friction should be in [0, PX_MAX_F32). If set to greater than staticFriction, the effective value of staticFriction will be increased to match.
Sleeping: Does NOT wake any actors which may be affected.
[in] | coef | Coefficient of dynamic friction. Range: [0, PX_MAX_F32) |
|
pure virtual |
Raises or clears a particular material flag.
See the list of flags PxMaterialFlag
Default: no flags are set
Sleeping: Does NOT wake any actors which may be affected.
[in] | flag | The PxMaterial flag to raise(set) or clear. |
[in] | b | New state of the flag |
|
pure virtual |
sets all the material flags.
See the list of flags PxMaterialFlag
Default: no flags are set
Sleeping: Does NOT wake any actors which may be affected.
[in] | flags | All PxMaterial flags |
|
pure virtual |
Sets the friction combine mode.
See the enum PxCombineMode .
Default: PxCombineMode::eAVERAGE
Sleeping: Does NOT wake any actors which may be affected.
[in] | combMode | Friction combine mode to set for this material. See PxCombineMode. |
|
pure virtual |
Sets the coefficient of restitution.
A coefficient of 0 makes the object bounce as little as possible, higher values up to 1.0 result in more bounce.
Sleeping: Does NOT wake any actors which may be affected.
[in] | rest | Coefficient of restitution. Range: [0,1] |
|
pure virtual |
Sets the restitution combine mode.
See the enum PxCombineMode .
Default: PxCombineMode::eAVERAGE
Sleeping: Does NOT wake any actors which may be affected.
[in] | combMode | Restitution combine mode for this material. See PxCombineMode. |
|
pure virtual |
Sets the coefficient of static friction.
The coefficient of static friction should be in the range [0, PX_MAX_F32)
Sleeping: Does NOT wake any actors which may be affected.
[in] | coef | Coefficient of static friction. Range: [0, PX_MAX_F32) |
void* PxMaterial::userData |
user can assign this to whatever, usually to create a 1:1 relationship with a user object.