Public Member Functions | Public Attributes | Protected Member Functions | List of all members
PxMaterial Class Referenceabstract

Material class to represent a set of surface properties. More...

#include <PxMaterial.h>

Inheritance diagram for PxMaterial:
Inheritance graph
[legend]
Collaboration diagram for PxMaterial:
Collaboration graph
[legend]

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 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)=0
 Raises or clears a particular material flag. More...
 
virtual void setFlags (PxMaterialFlags inFlags)=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_INLINE PxType getConcreteType () const
 Returns concrete type of object. More...
 
PX_INLINE void setBaseFlag (PxBaseFlag::Enum flag, bool value)
 Set PxBaseFlag. More...
 
PX_INLINE void setBaseFlags (PxBaseFlags inFlags)
 Set PxBaseFlags. More...
 
PX_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
 

Detailed Description

Material class to represent a set of surface properties.

See Also
PxPhysics.createMaterial

Constructor & Destructor Documentation

PX_INLINE PxMaterial::PxMaterial ( PxType  concreteType,
PxBaseFlags  baseFlags 
)
inlineprotected
PX_INLINE PxMaterial::PxMaterial ( PxBaseFlags  baseFlags)
inlineprotected
virtual PxMaterial::~PxMaterial ( )
inlineprotectedvirtual

Member Function Documentation

virtual const char* PxMaterial::getConcreteTypeName ( ) const
inlinevirtual

Returns string name of dynamic type.

Returns
Class name of most derived type of this object.

Reimplemented from PxBase.

virtual PxReal PxMaterial::getDynamicFriction ( ) const
pure virtual

Retrieves the DynamicFriction value.

Returns
The coefficient of dynamic friction.
See Also
setDynamicFriction
virtual PxMaterialFlags PxMaterial::getFlags ( ) const
pure virtual

Retrieves the flags. See PxMaterialFlag.

Returns
The material flags.
See Also
PxMaterialFlag setFlags()
virtual PxCombineMode::Enum PxMaterial::getFrictionCombineMode ( ) const
pure virtual

Retrieves the friction combine mode.

See setFrictionCombineMode.

Returns
The friction combine mode for this material.
See Also
PxCombineMode setFrictionCombineMode()
virtual PxU32 PxMaterial::getReferenceCount ( ) const
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.

Returns
the current reference count.
virtual PxReal PxMaterial::getRestitution ( ) const
pure virtual

Retrieves the coefficient of restitution.

See setRestitution.

Returns
The coefficient of restitution.
See Also
setRestitution()
virtual PxCombineMode::Enum PxMaterial::getRestitutionCombineMode ( ) const
pure virtual

Retrieves the restitution combine mode.

See setRestitutionCombineMode.

Returns
The coefficient of restitution combine mode for this material.
See Also
PxCombineMode setRestitutionCombineMode getRestitution()
virtual PxReal PxMaterial::getStaticFriction ( ) const
pure virtual

Retrieves the coefficient of static friction.

Returns
The coefficient of static friction.
See Also
setStaticFriction
virtual bool PxMaterial::isKindOf ( const char *  superClass) const
inlineprotectedvirtual

Returns whether a given type name matches with the type of this instance.

Reimplemented from PxBase.

References PxBase::isKindOf().

virtual void PxMaterial::release ( )
pure virtual

Decrements the reference count of a material and releases it if the new reference count is zero.

The material is destroyed when the application's reference is released and all shapes referencing the material are destroyed.

See Also
PxPhysics.createMaterial()

Implements PxBase.

virtual void PxMaterial::setDynamicFriction ( PxReal  coef)
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.

Parameters
[in]coefCoefficient of dynamic friction. Range: [0, PX_MAX_F32)
See Also
getDynamicFriction()
virtual void PxMaterial::setFlag ( PxMaterialFlag::Enum  flag,
bool   
)
pure virtual

Raises or clears a particular material flag.

See the list of flags PxMaterialFlag

Sleeping: Does NOT wake any actors which may be affected.

Parameters
[in]flagThe PxMaterial flag to raise(set) or clear.
See Also
getFlags() PxMaterialFlag
virtual void PxMaterial::setFlags ( PxMaterialFlags  inFlags)
pure virtual

sets all the material flags.

See the list of flags PxMaterialFlag

Sleeping: Does NOT wake any actors which may be affected.

virtual void PxMaterial::setFrictionCombineMode ( PxCombineMode::Enum  combMode)
pure virtual

Sets the friction combine mode.

See the enum PxCombineMode .

Sleeping: Does NOT wake any actors which may be affected.

Parameters
[in]combModeFriction combine mode to set for this material. See PxCombineMode.
See Also
PxCombineMode getFrictionCombineMode setStaticFriction() setDynamicFriction()
virtual void PxMaterial::setRestitution ( PxReal  rest)
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.

Parameters
[in]restCoefficient of restitution. Range: [0,1]
See Also
getRestitution()
virtual void PxMaterial::setRestitutionCombineMode ( PxCombineMode::Enum  combMode)
pure virtual

Sets the restitution combine mode.

See the enum PxCombineMode .

Sleeping: Does NOT wake any actors which may be affected.

Parameters
[in]combModeRestitution combine mode for this material. See PxCombineMode.
See Also
PxCombineMode getRestitutionCombineMode() setRestitution()
virtual void PxMaterial::setStaticFriction ( PxReal  coef)
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.

Parameters
[in]coefCoefficient of static friction. Range: [0, PX_MAX_F32)
See Also
getStaticFriction()

Member Data Documentation

void* PxMaterial::userData

user can assign this to whatever, usually to create a 1:1 relationship with a user object.


The documentation for this class was generated from the following file:


Copyright © 2008-2015 NVIDIA Corporation, 2701 San Tomas Expressway, Santa Clara, CA 95050 U.S.A. All rights reserved. www.nvidia.com