#include <hps.h>
|
static const HPS::Type | staticType = HPS::Type::TreeContext |
|
static const HPS::Type | staticType = HPS::Type::None |
|
|
template<typename T > |
static intptr_t | ClassID () |
|
The TreeContext class is a user space object. It contains a spatial partition used for shell selection and shell relation computations. If many such operations will be performed without modifying the segment tree, using the same TreeContext for all of them can be a significant optimization. If a TreeContext is not specified, a new one is computed internally each time.
◆ TreeContext() [1/3]
HPS::TreeContext::TreeContext |
( |
bool |
in_create = true | ) |
|
The default constructor creates a new TreeContext object.
- Parameters
-
in_create | whether to create the underlying spatial tree context. |
◆ TreeContext() [2/3]
HPS::TreeContext::TreeContext |
( |
TreeContext const & |
in_that | ) |
|
The copy constructor shares a TreeContext object.
- Parameters
-
◆ TreeContext() [3/3]
HPS::TreeContext::TreeContext |
( |
TreeContext && |
in_that | ) |
|
The move constructor creates a new TreeContext by transferring the underlying impl of the rvalue reference to this TreeContext thereby avoiding a copy and allocation.
- Parameters
-
in_that | An rvalue reference to a TreeContext to take the impl from. |
◆ ~TreeContext()
virtual HPS::TreeContext::~TreeContext |
( |
| ) |
|
|
virtual |
The destructor cleans up the tree context created by the constructor.
◆ Equals()
bool HPS::TreeContext::Equals |
( |
TreeContext const & |
in_that | ) |
const |
Check if the source TreeContext is the same as this TreeContext.
- Parameters
-
- Returns
- true if the objects are identical, false otherwise.
◆ ObjectType()
HPS::Type HPS::TreeContext::ObjectType |
( |
| ) |
const |
|
inlinevirtual |
This function returns the type the object, as declared (if the object is derived, this does not give the true type of the derived object).
- Returns
- The declared type of the object in question, which may differ from the true, underlying type.
Reimplemented from HPS::Object.
◆ operator!=()
bool HPS::TreeContext::operator!= |
( |
TreeContext const & |
in_that | ) |
const |
Check if the source TreeContext is not the same as this TreeContext.
- Parameters
-
- Returns
- true if the objects are not identical, false otherwise.
◆ operator=() [1/2]
The move assignment operator transfers the underlying impl of the rvalue reference to this TreeContext thereby avoiding a copy.
- Parameters
-
in_that | An rvalue reference to a TreeContext to take the impl from. |
- Returns
- A reference to this TreeContext.
◆ operator=() [2/2]
◆ operator==()
bool HPS::TreeContext::operator== |
( |
TreeContext const & |
in_that | ) |
const |
Check if the source TreeContext is the same as this TreeContext.
- Parameters
-
- Returns
- true if the objects are identical, false otherwise.
The documentation for this class was generated from the following file: