Hoops Visualize HPS  version 2018-SP2
Hoops Visualize HPS 3D Rendering Engine
Looking for a senior C++ dev?
I'm looking for work. Hire me!
HPS::LightingAttributeKit Class Reference

The HPS::LightingAttributeKit class is a user space object, useful for carrying a group attribute settings. More...

#include <hps.h>

Inheritance diagram for HPS::LightingAttributeKit:
Collaboration diagram for HPS::LightingAttributeKit:

Public Member Functions

 LightingAttributeKit ()
 Initializes an empty kit. More...
 
 LightingAttributeKit (LightingAttributeKit const &in_kit)
 The copy constructor creates a new LightingAttributeKit object that contains the same settings as the source object. More...
 
 LightingAttributeKit (LightingAttributeKit &&in_that)
 The move constructor creates a LightingAttributeKit by transferring the underlying impl of the rvalue reference to this LightingAttributeKit thereby avoiding a copy and allocation. More...
 
LightingAttributeKitoperator= (LightingAttributeKit &&in_that)
 The move assignment operator transfers the underlying impl of the rvalue reference to this LightingAttributeKit thereby avoiding a copy. More...
 
virtual ~LightingAttributeKit ()
 Destroy this kit. More...
 
HPS::Type ObjectType () const
 
void Set (LightingAttributeKit const &in_kit)
 Copies all settings from the source LightingAttributeKit into this object. More...
 
void Show (LightingAttributeKit &out_kit) const
 Copies all settings from this LightingAttributeKit into the given LightingAttributeKit. More...
 
LightingAttributeKitoperator= (LightingAttributeKit const &in_kit)
 Copies the source LightingAttributeKit into this object. More...
 
bool Empty () const
 Indicates whether this object has any values set on it. More...
 
bool Equals (LightingAttributeKit const &in_kit) const
 Check if the source LightingAttributeKit is equivalent to this object. More...
 
bool operator== (LightingAttributeKit const &in_kit) const
 Check if the source LightingAttributeKit is equivalent to this object. More...
 
bool operator!= (LightingAttributeKit const &in_kit) const
 Check if the source LightingAttributeKit is not equivalent to this object. More...
 
LightingAttributeKitSetInterpolationAlgorithm (Lighting::InterpolationAlgorithm in_interpolation)
 Sets the interpolation algorithm that will be used for rendering lit faces. More...
 
LightingAttributeKitUnsetInterpolationAlgorithm ()
 Removes the interpolation algorithm setting. More...
 
LightingAttributeKitUnsetEverything ()
 Removes all settings from this object. More...
 
bool ShowInterpolationAlgorithm (Lighting::InterpolationAlgorithm &out_interpolation) const
 Shows the interpolation algorithm that will be used for rendering lit faces. More...
 
virtual HPS::Type Type () const
 This function returns the true type of the underlying object. More...
 
virtual void Reset ()
 Resets this object to its initial, uninitialized state. More...
 
bool HasType (HPS::Type in_mask) const
 This function indicates whether this Object has the given Type mask. More...
 
intptr_t GetClassID () const
 Returns a unique identifier that is shared by all objects of the same class. More...
 
intptr_t GetInstanceID () const
 Returns an identifier that can be used to identify which instance of a class an object is. More...
 

Static Public Member Functions

static LightingAttributeKit GetDefault ()
 Creates a LightingAttributeKit which contains the default settings. More...
 
template<typename T >
static intptr_t ClassID ()
 Unique identifier for this class. More...
 

Static Public Attributes

static const HPS::Type staticType = HPS::Type::LightingAttributeKit
 

Detailed Description

The HPS::LightingAttributeKit class is a user space object, useful for carrying a group attribute settings.

Calling HPS::LightingAttributeKit::GetDefault() will return a kit with values found in this table.

Constructor & Destructor Documentation

◆ LightingAttributeKit() [1/3]

HPS::LightingAttributeKit::LightingAttributeKit ( )

Initializes an empty kit.

◆ LightingAttributeKit() [2/3]

HPS::LightingAttributeKit::LightingAttributeKit ( LightingAttributeKit const &  in_kit)

The copy constructor creates a new LightingAttributeKit object that contains the same settings as the source object.

Parameters
in_kitThe source object to copy.

◆ LightingAttributeKit() [3/3]

HPS::LightingAttributeKit::LightingAttributeKit ( LightingAttributeKit &&  in_that)

The move constructor creates a LightingAttributeKit by transferring the underlying impl of the rvalue reference to this LightingAttributeKit thereby avoiding a copy and allocation.

Parameters
in_thatAn rvalue reference to a LightingAttributeKit to take the impl from.

◆ ~LightingAttributeKit()

virtual HPS::LightingAttributeKit::~LightingAttributeKit ( )
virtual

Destroy this kit.

Member Function Documentation

◆ ClassID()

template<typename T >
static intptr_t HPS::Object::ClassID ( )
inlinestaticinherited

Unique identifier for this class.

Note: this method uses construction of static objects. If used in a constructor, it should be used in the body not the initializer list.

◆ Empty()

bool HPS::LightingAttributeKit::Empty ( ) const
virtual

Indicates whether this object has any values set on it.

Returns
true if no values are set on this object, false otherwise.

Reimplemented from HPS::Object.

◆ Equals()

bool HPS::LightingAttributeKit::Equals ( LightingAttributeKit const &  in_kit) const

Check if the source LightingAttributeKit is equivalent to this object.

Parameters
in_kitThe source LightingAttributeKit to compare to this object.
Returns
true if the objects are equivalent, false otherwise.

◆ GetClassID()

intptr_t HPS::Object::GetClassID ( ) const
inherited

Returns a unique identifier that is shared by all objects of the same class.

Returns
A unique value shared by all objects of the same class.

◆ GetDefault()

static LightingAttributeKit HPS::LightingAttributeKit::GetDefault ( )
static

Creates a LightingAttributeKit which contains the default settings.

The returned object will not necessarily have values set for every option, but it will have settings for those options where it is reasonable to have a default.

Returns
A LightingAttributeKit with the default settings.

◆ GetInstanceID()

intptr_t HPS::Object::GetInstanceID ( ) const
inherited

Returns an identifier that can be used to identify which instance of a class an object is.

Different keys and controls will return the same value if they are backed by the same database resource.

Returns
A value unique to an instance of an object and all objects that are backed by the same database resource.

◆ HasType()

bool HPS::Object::HasType ( HPS::Type  in_mask) const
inherited

This function indicates whether this Object has the given Type mask.

Parameters
in_maskThe Type mask to check against this Object.
Returns
true if this Object has the given Type mask, false otherwise.

◆ ObjectType()

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

Reimplemented from HPS::Kit.

Here is the call graph for this function:

◆ operator!=()

bool HPS::LightingAttributeKit::operator!= ( LightingAttributeKit const &  in_kit) const

Check if the source LightingAttributeKit is not equivalent to this object.

Parameters
in_kitThe source LightingAttributeKit to compare to this object.
Returns
true if the objects are not equivalent, false otherwise.

◆ operator=() [1/2]

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

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

Parameters
in_thatAn rvalue reference to a LightingAttributeKit to take the impl from.
Returns
A reference to this LightingAttributeKit.

◆ operator=() [2/2]

LightingAttributeKit& HPS::LightingAttributeKit::operator= ( LightingAttributeKit const &  in_kit)

Copies the source LightingAttributeKit into this object.

Parameters
in_kitThe source LightingAttributeKit to copy.
Returns
A reference to this object.

◆ operator==()

bool HPS::LightingAttributeKit::operator== ( LightingAttributeKit const &  in_kit) const

Check if the source LightingAttributeKit is equivalent to this object.

Parameters
in_kitThe source LightingAttributeKit to compare to this object.
Returns
true if the objects are equivalent, false otherwise.

◆ Reset()

◆ Set()

void HPS::LightingAttributeKit::Set ( LightingAttributeKit const &  in_kit)

Copies all settings from the source LightingAttributeKit into this object.

Parameters
in_kitThe source LightingAttributeKit to copy.

◆ SetInterpolationAlgorithm()

LightingAttributeKit& HPS::LightingAttributeKit::SetInterpolationAlgorithm ( Lighting::InterpolationAlgorithm  in_interpolation)

Sets the interpolation algorithm that will be used for rendering lit faces.

Parameters
in_interpolationThe algorithm that will be used for rendering lit faces.
Returns
A reference to this object.

◆ Show()

void HPS::LightingAttributeKit::Show ( LightingAttributeKit out_kit) const

Copies all settings from this LightingAttributeKit into the given LightingAttributeKit.

Parameters
out_kitThe LightingAttributeKit to populate with the contents of this object.

◆ ShowInterpolationAlgorithm()

bool HPS::LightingAttributeKit::ShowInterpolationAlgorithm ( Lighting::InterpolationAlgorithm out_interpolation) const

Shows the interpolation algorithm that will be used for rendering lit faces.

Parameters
out_interpolationThe algorithm that will be used for rendering lit faces.
Returns
true if the setting is valid, false otherwise.

◆ Type()

virtual HPS::Type HPS::Kit::Type ( ) const
inlinevirtualinherited

This function returns the true type of the underlying object.

This function is useful for finding the type of smart pointer objects that have been cast to more generic types.

Returns
The true type of the object in question.

Reimplemented from HPS::Object.

◆ UnsetEverything()

LightingAttributeKit& HPS::LightingAttributeKit::UnsetEverything ( )

Removes all settings from this object.

Returns
A reference to this object.

◆ UnsetInterpolationAlgorithm()

LightingAttributeKit& HPS::LightingAttributeKit::UnsetInterpolationAlgorithm ( )

Removes the interpolation algorithm setting.

Returns
A reference to this object.

Member Data Documentation

◆ staticType

const HPS::Type HPS::LightingAttributeKit::staticType = HPS::Type::LightingAttributeKit
static

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