DART
6.7.3
|
PlaneShape represents infinite plane has normal and offset as properties. More...
#include <PlaneShape.hpp>
Public Types | |
enum | ShapeType { SPHERE , BOX , ELLIPSOID , CYLINDER , CAPSULE , CONE , PLANE , MULTISPHERE , MESH , SOFT_MESH , LINE_SEGMENT , HEIGHTMAP , UNSUPPORTED } |
enum | DataVariance { STATIC =0 , DYNAMIC_TRANSFORM = 1 << 1 , DYNAMIC_PRIMITIVE = 1 << 2 , DYNAMIC_COLOR = 1 << 3 , DYNAMIC_VERTICES = 1 << 4 , DYNAMIC_ELEMENTS = 1 << 5 , DYNAMIC = 0xFF } |
DataVariance can be used by renderers to determine whether it should expect data for this shape to change during each update. More... | |
using | VersionChangedSignal = common::Signal< void(Shape *shape, std::size_t version)> |
Public Member Functions | |
PlaneShape (const Eigen::Vector3d &_normal, double _offset) | |
Constructor. More... | |
PlaneShape (const Eigen::Vector3d &_normal, const Eigen::Vector3d &_point) | |
Constructor. More... | |
const std::string & | getType () const override |
Returns a string representing the shape type. More... | |
Eigen::Matrix3d | computeInertia (double mass) const override |
Computes the inertia. More... | |
void | setNormal (const Eigen::Vector3d &_normal) |
Set plane normal. More... | |
const Eigen::Vector3d & | getNormal () const |
Get plane normal. More... | |
void | setOffset (double _offset) |
Set plane offset. More... | |
double | getOffset () const |
Get plane offset. More... | |
void | setNormalAndOffset (const Eigen::Vector3d &_normal, double _offset) |
Set plane normal and offset. More... | |
void | setNormalAndPoint (const Eigen::Vector3d &_normal, const Eigen::Vector3d &_point) |
Set plane normal and point. More... | |
double | computeDistance (const Eigen::Vector3d &_point) const |
Compute distance between the plane and the given point. More... | |
double | computeSignedDistance (const Eigen::Vector3d &_point) const |
Compute signed distance between the plane and the given point. More... | |
template<typename ShapeT > | |
bool | is () const |
Get true if the types of this Shape and the template parameter (a shape class) are identical. More... | |
const math::BoundingBox & | getBoundingBox () const |
Get the bounding box of the shape in its local coordinate frame. More... | |
Eigen::Matrix3d | computeInertiaFromDensity (double density) const |
Eigen::Matrix3d | computeInertiaFromMass (double mass) const |
double | getVolume () const |
Returns volume of this shape. More... | |
std::size_t | getID () const |
ShapeType | getShapeType () const |
void | setDataVariance (unsigned int _variance) |
Set the data variance of this shape. More... | |
void | addDataVariance (unsigned int _variance) |
Add a type of variance to this shape. More... | |
void | removeDataVariance (unsigned int _variance) |
Remove a type of variance from this shape. More... | |
unsigned int | getDataVariance () const |
Get the data variance of this shape. More... | |
bool | checkDataVariance (DataVariance type) const |
True iff this Shape has the specified type of DataVariance. More... | |
virtual void | refreshData () |
Instruct this shape to update its data. More... | |
virtual void | notifyAlphaUpdate (double alpha) |
Notify that the alpha of this shape has updated. More... | |
virtual void | notifyAlphaUpdated (double alpha) |
Notify that the alpha of this shape has updated. More... | |
virtual void | notifyColorUpdate (const Eigen::Vector4d &color) |
Notify that the color (rgba) of this shape has updated. More... | |
virtual void | notifyColorUpdated (const Eigen::Vector4d &color) |
Notify that the color (rgba) of this shape has updated. More... | |
std::size_t | incrementVersion () override final |
Increment the version of this Shape and notify its subscribers. More... | |
virtual std::size_t | getVersion () const |
Get the version number of this object. More... | |
Static Public Member Functions | |
static const std::string & | getStaticType () |
Returns shape type for this class. More... | |
Public Attributes | |
common::SlotRegister< VersionChangedSignal > | onVersionChanged |
Use this to subscribe to version change signals. More... | |
Protected Member Functions | |
void | sendDestructionNotification () const |
Send a destruction notification to all Observers. More... | |
void | addObserver (Observer *_observer) const |
Add an Observer to the list of Observers. More... | |
void | removeObserver (Observer *_observer) const |
Remove an Observer from the list of Observers. More... | |
void | setVersionDependentObject (VersionCounter *dependent) |
Protected Attributes | |
math::BoundingBox | mBoundingBox |
The bounding box (in the local coordinate frame) of the shape. More... | |
bool | mIsBoundingBoxDirty |
Whether bounding box needs update. More... | |
double | mVolume |
Volume enclosed by the geometry. More... | |
bool | mIsVolumeDirty |
Whether volume needs update. More... | |
const std::size_t | mID |
Unique id. More... | |
unsigned int | mVariance |
The DataVariance of this Shape. More... | |
ShapeType | mType |
std::set< Observer * > | mObservers |
List of current Observers. More... | |
std::size_t | mVersion |
Static Protected Attributes | |
static std::atomic_int | mCounter { 1000 } |
Private Member Functions | |
void | updateBoundingBox () const override |
Updates bounding box. More... | |
void | updateVolume () const override |
Updates volume. More... | |
Private Attributes | |
Eigen::Vector3d | mNormal |
Plane normal. More... | |
double | mOffset |
Plane offset. More... | |
VersionChangedSignal | mVersionChangedSignal |
Triggered by incrementVersion() More... | |
VersionCounter * | mDependent |
PlaneShape represents infinite plane has normal and offset as properties.
|
inherited |
|
inherited |
DataVariance can be used by renderers to determine whether it should expect data for this shape to change during each update.
Enumerator | |
---|---|
STATIC | |
DYNAMIC_TRANSFORM | No data will ever change. |
DYNAMIC_PRIMITIVE | The relative transform of the Shape might change. |
DYNAMIC_COLOR | The primitive properties (such as x/y/z scaling) of the shape might change. |
DYNAMIC_VERTICES | The coloring or textures of the shape might change. |
DYNAMIC_ELEMENTS | Vertex positions of a mesh might change (this does not include adding or removing vertices) (this enum is not relevant for primitive shapes) |
DYNAMIC | The number of elements and/or arrangement of elements might change (this includes adding and removing vertices) (this enum is not relevant for primitive shapes) |
|
inherited |
Enumerator | |
---|---|
SPHERE | |
BOX | |
ELLIPSOID | |
CYLINDER | |
CAPSULE | |
CONE | |
PLANE | |
MULTISPHERE | |
MESH | |
SOFT_MESH | |
LINE_SEGMENT | |
HEIGHTMAP | |
UNSUPPORTED |
dart::dynamics::PlaneShape::PlaneShape | ( | const Eigen::Vector3d & | _normal, |
double | _offset | ||
) |
Constructor.
dart::dynamics::PlaneShape::PlaneShape | ( | const Eigen::Vector3d & | _normal, |
const Eigen::Vector3d & | _point | ||
) |
Constructor.
|
inherited |
Add a type of variance to this shape.
All other variance types will remain the same.
|
protectedinherited |
Add an Observer to the list of Observers.
|
inherited |
True iff this Shape has the specified type of DataVariance.
double dart::dynamics::PlaneShape::computeDistance | ( | const Eigen::Vector3d & | _point | ) | const |
Compute distance between the plane and the given point.
|
overridevirtual |
Computes the inertia.
Implements dart::dynamics::Shape.
|
inherited |
|
inherited |
double dart::dynamics::PlaneShape::computeSignedDistance | ( | const Eigen::Vector3d & | _point | ) | const |
Compute signed distance between the plane and the given point.
|
inherited |
Get the bounding box of the shape in its local coordinate frame.
The dimension will be automatically determined by the sub-classes such as BoxShape, EllipsoidShape, CylinderShape, and MeshShape.
|
inherited |
Get the data variance of this shape.
|
inherited |
const Eigen::Vector3d & dart::dynamics::PlaneShape::getNormal | ( | ) | const |
Get plane normal.
double dart::dynamics::PlaneShape::getOffset | ( | ) | const |
Get plane offset.
|
inherited |
|
static |
Returns shape type for this class.
|
overridevirtual |
|
virtualinherited |
Get the version number of this object.
|
inherited |
Returns volume of this shape.
The volume will be automatically calculated by the sub-classes such as BoxShape, EllipsoidShape, CylinderShape, and MeshShape.
|
finaloverridevirtualinherited |
Increment the version of this Shape and notify its subscribers.
Reimplemented from dart::common::VersionCounter.
|
inherited |
Get true if the types of this Shape and the template parameter (a shape class) are identical.
This function is a syntactic sugar, which is identical to: (getType() == ShapeType::getStaticType()).
Example code:
|
virtualinherited |
Notify that the alpha of this shape has updated.
|
virtualinherited |
Notify that the alpha of this shape has updated.
Reimplemented in dart::dynamics::MeshShape.
|
virtualinherited |
Notify that the color (rgba) of this shape has updated.
|
virtualinherited |
Notify that the color (rgba) of this shape has updated.
Reimplemented in dart::dynamics::ArrowShape.
|
virtualinherited |
Instruct this shape to update its data.
|
inherited |
Remove a type of variance from this shape.
All other variance types will remain the same.
|
protectedinherited |
Remove an Observer from the list of Observers.
|
protectedinherited |
Send a destruction notification to all Observers.
This will cause all Observers to behave as if this Subject has been permanently deleted, so it should only be called when that behavior is desired.
|
inherited |
Set the data variance of this shape.
Use the DataVariance to indicate what kind of shape information might change during run time so that renderers can optimize reliably.
void dart::dynamics::PlaneShape::setNormal | ( | const Eigen::Vector3d & | _normal | ) |
Set plane normal.
void dart::dynamics::PlaneShape::setNormalAndOffset | ( | const Eigen::Vector3d & | _normal, |
double | _offset | ||
) |
Set plane normal and offset.
void dart::dynamics::PlaneShape::setNormalAndPoint | ( | const Eigen::Vector3d & | _normal, |
const Eigen::Vector3d & | _point | ||
) |
Set plane normal and point.
void dart::dynamics::PlaneShape::setOffset | ( | double | _offset | ) |
Set plane offset.
|
protectedinherited |
|
overrideprivatevirtual |
Updates bounding box.
Implements dart::dynamics::Shape.
|
overrideprivatevirtual |
Updates volume.
Implements dart::dynamics::Shape.
|
mutableprotectedinherited |
The bounding box (in the local coordinate frame) of the shape.
|
staticprotectedinherited |
|
privateinherited |
|
protectedinherited |
Unique id.
|
mutableprotectedinherited |
Whether bounding box needs update.
|
mutableprotectedinherited |
Whether volume needs update.
|
private |
Plane normal.
|
mutableprotectedinherited |
List of current Observers.
|
private |
Plane offset.
|
protectedinherited |
Please use getType() instead. Type of primitive shpae.
|
protectedinherited |
The DataVariance of this Shape.
|
protectedinherited |
|
privateinherited |
Triggered by incrementVersion()
|
mutableprotectedinherited |
Volume enclosed by the geometry.
|
inherited |
Use this to subscribe to version change signals.