REFERENCE MANUAL
#include <hps.h>
Public Member Functions | |
BoundingControl (SegmentKey &in_seg) | |
BoundingControl (BoundingControl const &in_that) | |
BoundingControl (BoundingControl &&in_that) | |
Type | ObjectType () const |
BoundingControl & | operator= (BoundingControl &&in_that) |
BoundingControl & | operator= (BoundingControl const &in_that) |
BoundingControl & | SetExclusion (bool in_exclusion) |
BoundingControl & | SetVolume (SimpleSphere const &in_sphere, SimpleCuboid const &in_cuboid) |
BoundingControl & | SetVolume (SimpleSphere const &in_sphere) |
BoundingControl & | SetVolume (SimpleCuboid const &in_cuboid) |
bool | ShowExclusion (bool &out_exclusion) const |
bool | ShowVolume (SimpleSphere &out_sphere, SimpleCuboid &out_cuboid) const |
BoundingControl & | UnsetEverything () |
BoundingControl & | UnsetExclusion () |
BoundingControl & | UnsetVolume () |
~BoundingControl () | |
![]() | |
virtual bool | Empty () const |
intptr_t | GetClassID () const |
intptr_t | GetInstanceID () const |
bool | HasType (Type in_mask) const |
Object (Object &&in_that) | |
Object & | operator= (Object const &other_object) |
Object & | operator= (Object &&in_that) |
virtual void | Reset () |
Type | Type () const |
Additional Inherited Members | |
![]() | |
template<typename T > | |
static intptr_t | ClassID () |
![]() | |
Control (Control &&in_that) | |
Control & | operator= (Control &&in_that) |
The BoundingControl class is a smart pointer that is tied to a database object. This object allows you to manipulate settings related to bounding, such as volume and exclusion. This table lists default values for the various segment attributes accessible from BoundingControl.
|
explicit |
Initializes a control tied to the segment in_seg.
BoundingControl::BoundingControl | ( | BoundingControl const & | in_that | ) |
Initializes a control tied to the same object as in_that.
BoundingControl::BoundingControl | ( | BoundingControl && | in_that | ) |
The move constructor creates a BoundingControl by transferring the underlying impl of the rvalue reference to this BoundingControl thereby avoiding a copy and allocation.
in_that | An rvalue reference to a BoundingControl to take the impl from. |
BoundingControl::~BoundingControl | ( | ) |
Releases a reference to the database object this control is tied to.
|
inlinevirtual |
This function returns the type the object, as declared. This does not necessarily give the true type of the underlying object.
Reimplemented from Control.
BoundingControl& BoundingControl::operator= | ( | BoundingControl && | in_that | ) |
The move assignment operator transfers the underlying impl of the rvalue reference to this BoundingControl thereby avoiding a copy.
in_that | An rvalue reference to a BoundingControl to take the impl from. |
BoundingControl& BoundingControl::operator= | ( | BoundingControl const & | in_that | ) |
Share the smart-pointer.
BoundingControl& BoundingControl::SetExclusion | ( | bool | in_exclusion | ) |
Controls whether this segment should be excluded when computing bounding volumes.
in_state | Whether to exclude this segment when computing bounding volumes. |
BoundingControl& BoundingControl::SetVolume | ( | SimpleSphere const & | in_sphere, |
SimpleCuboid const & | in_cuboid | ||
) |
Explicitly sets the local bounding.
in_sphere | The SimpleSphere to set the bounding volume to. |
in_cuboid | The SimpleCuboid to set the bounding volume to. |
BoundingControl& BoundingControl::SetVolume | ( | SimpleSphere const & | in_sphere | ) |
Explicitly sets the local bounding.
in_sphere | The SimpleSphere to set the bounding volume to. |
BoundingControl& BoundingControl::SetVolume | ( | SimpleCuboid const & | in_cuboid | ) |
Explicitly sets the local bounding.
in_cuboid | The SimpleCuboid to set the bounding volume to. |
bool BoundingControl::ShowExclusion | ( | bool & | out_exclusion | ) | const |
Shows the bounding exclusion setting.
out_exclusion | Whether to exclude this segment when computing bounding volumes. |
bool BoundingControl::ShowVolume | ( | SimpleSphere & | out_sphere, |
SimpleCuboid & | out_cuboid | ||
) | const |
Shows the bounding volume.
out_sphere | A sphere to show the volume into. If the bounding is not a sphere, this argument will be invalidated. |
out_cuboid | A cuboid to show the volume into. If the bounding is not a cuboid, this argument will be invalidated. |
BoundingControl& BoundingControl::UnsetEverything | ( | ) |
Removes all bounding settings from this object.
BoundingControl& BoundingControl::UnsetExclusion | ( | ) |
Removes a bounding exclusion setting.
BoundingControl& BoundingControl::UnsetVolume | ( | ) |
Removes an explicitly set bounding, reverting to the automatically generated one.