Public Member Functions | List of all members
HPS::BoundingControl Class Reference

#include <hps.h>

Inheritance diagram for HPS::BoundingControl:
HPS::Control HPS::Object

Public Member Functions

 BoundingControl (SegmentKey &in_seg)
 
 BoundingControl (BoundingControl const &in_that)
 
 BoundingControl (BoundingControl &&in_that)
 
BoundingControloperator= (BoundingControl &&in_that)
 
 ~BoundingControl ()
 
HPS::Type ObjectType () const
 
BoundingControloperator= (BoundingControl const &in_that)
 
BoundingControlSetVolume (SimpleSphere const &in_sphere, SimpleCuboid const &in_cuboid)
 
BoundingControlSetVolume (SimpleSphere const &in_sphere)
 
BoundingControlSetVolume (SimpleCuboid const &in_cuboid)
 
BoundingControlSetExclusion (bool in_exclusion)
 
BoundingControlUnsetVolume ()
 
BoundingControlUnsetExclusion ()
 
BoundingControlUnsetEverything ()
 
bool ShowVolume (SimpleSphere &out_sphere, SimpleCuboid &out_cuboid) const
 
bool ShowExclusion (bool &out_exclusion) const
 
- Public Member Functions inherited from HPS::Control
 Control (Control const &in_that)=default
 
- Public Member Functions inherited from HPS::Object
 Object (Object const &that)
 
Objectoperator= (Object const &other_object)
 
 Object (Object &&in_that)
 
Objectoperator= (Object &&in_that)
 
HPS::Type Type () const
 
virtual bool Empty () const
 
virtual void Reset ()
 
bool HasType (HPS::Type in_mask) const
 
intptr_t GetClassID () const
 
intptr_t GetInstanceID () const
 

Additional Inherited Members

- Static Public Member Functions inherited from HPS::Object
template<typename T >
static intptr_t ClassID ()
 
- Protected Member Functions inherited from HPS::Control
 Control (Control &&in_that)
 
Controloperator= (Control &&in_that)
 

Detailed Description

The HPS::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 HPS::BoundingControl.

Constructor & Destructor Documentation

HPS::BoundingControl::BoundingControl ( SegmentKey in_seg)
explicit

Initializes a control tied to the segment in_seg.

HPS::BoundingControl::BoundingControl ( BoundingControl const &  in_that)

Initializes a control tied to the same object as in_that.

HPS::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.

Parameters
in_thatAn rvalue reference to a BoundingControl to take the impl from.
HPS::BoundingControl::~BoundingControl ( )

Releases a reference to the database object this control is tied to.

Member Function Documentation

HPS::Type HPS::BoundingControl::ObjectType ( ) const
inlinevirtual

This function returns the type the object, as declared. This does not necessarily give the true type of the underlying object.

Returns
The declared type of the object in question, which may differ from the true, underlying type.

Reimplemented from HPS::Control.

BoundingControl& HPS::BoundingControl::operator= ( BoundingControl &&  in_that)

The move assignment operator transfers the underlying impl of the rvalue reference to this BoundingControl thereby avoiding a copy.

Parameters
in_thatAn rvalue reference to a BoundingControl to take the impl from.
Returns
A reference to this BoundingControl.
BoundingControl& HPS::BoundingControl::operator= ( BoundingControl const &  in_that)

Share the underlying smart-pointer of the BoundingControl source.

Parameters
in_thatThe BoundingControl source of the assignment.
Returns
A reference to this BoundingControl.
BoundingControl& HPS::BoundingControl::SetExclusion ( bool  in_exclusion)

Controls whether this segment should be excluded when computing bounding volumes.

Parameters
in_excludeWhether to exclude this segment when computing bounding volumes.
Returns
A reference to this object.
BoundingControl& HPS::BoundingControl::SetVolume ( SimpleSphere const &  in_sphere,
SimpleCuboid const &  in_cuboid 
)

Explicitly sets the local bounding.

Parameters
in_sphereThe SimpleSphere to set the bounding volume to.
in_cuboidThe SimpleCuboid to set the bounding volume to.
Returns
A reference to this object.
BoundingControl& HPS::BoundingControl::SetVolume ( SimpleSphere const &  in_sphere)

Explicitly sets the local bounding.

Parameters
in_sphereThe SimpleSphere to set the bounding volume to.
Returns
A reference to this object.
BoundingControl& HPS::BoundingControl::SetVolume ( SimpleCuboid const &  in_cuboid)

Explicitly sets the local bounding.

Parameters
in_cuboidThe SimpleCuboid to set the bounding volume to.
Returns
A reference to this object.
bool HPS::BoundingControl::ShowExclusion ( bool &  out_exclusion) const

Shows the bounding exclusion setting.

Parameters
out_exclusionWhether to exclude this segment when computing bounding volumes.
Returns
true if the setting is valid, false otherwise.
bool HPS::BoundingControl::ShowVolume ( SimpleSphere out_sphere,
SimpleCuboid out_cuboid 
) const

Shows the bounding volume.

Parameters
out_sphereA sphere to show the volume into. If the bounding is not a sphere, this argument will be invalidated.
out_cuboidA cuboid to show the volume into. If the bounding is not a cuboid, this argument will be invalidated.
Returns
true if the setting is valid, false otherwise.
BoundingControl& HPS::BoundingControl::UnsetEverything ( )

Removes all bounding settings from this object.

Returns
A reference to this object.
BoundingControl& HPS::BoundingControl::UnsetExclusion ( )

Removes a bounding exclusion setting.

Returns
A reference to this object.
BoundingControl& HPS::BoundingControl::UnsetVolume ( )

Removes an explicitly set bounding, reverting to the automatically generated one.

Returns
A reference to this object.

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