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::OBJ::ImportResultsKit Class Reference

The ImportResultsKit class contains the results of a successful OBJ import. More...

#include <hps.h>

Inheritance diagram for HPS::OBJ::ImportResultsKit:
Collaboration diagram for HPS::OBJ::ImportResultsKit:

Public Member Functions

 ImportResultsKit ()
 The default constructor creates an empty ImportResultsKit object. More...
 
 ImportResultsKit (ImportResultsKit const &in_kit)
 The copy constructor creates a new ImportResultsKit object that contains the same settings as the source ImportResultsKit. More...
 
 ImportResultsKit (ImportResultsKit &&in_that)
 The move constructor creates an ImportResultsKit by transferring the underlying impl of the rvalue reference to this ImportResultsKit thereby avoiding a copy and allocation. More...
 
ImportResultsKitoperator= (ImportResultsKit &&in_that)
 The move assignment operator transfers the underlying impl of the rvalue reference to this ImportResultsKit thereby avoiding a copy. More...
 
virtual ~ImportResultsKit ()
 
HPS::Type ObjectType () const
 
void Set (ImportResultsKit const &in_kit)
 Copies the source ImportResultsKit into this ImportResultsKit. More...
 
void Show (ImportResultsKit &out_kit) const
 Copies this ImportResultsKit into the given ImportResultsKit. More...
 
ImportResultsKitoperator= (ImportResultsKit const &in_kit)
 Copies the source ImportResultsKit into this ImportResultsKit. More...
 
bool Empty () const
 Indicates whether this ImportResultsKit has any values set on it. More...
 
bool Equals (ImportResultsKit const &in_kit) const
 Check if the source ImportResultsKit is equivalent to this ImportResultsKit. More...
 
bool operator== (ImportResultsKit const &in_kit) const
 Check if the source ImportResultsKit is equivalent to this ImportResultsKit. More...
 
bool operator!= (ImportResultsKit const &in_kit) const
 Check if the source ImportResultsKit is not equivalent to this ImportResultsKit. More...
 
ImportResultsKitSetSegment (SegmentKey const &in_segment)
 Sets the root segment which the OBJ data was imported into. More...
 
ImportResultsKitUnsetSegment ()
 Removes the root segment which the OBJ data was imported into. More...
 
bool ShowSegment (SegmentKey &out_segment) const
 Shows the root segment which the OBJ data was imported into. More...
 
ImportResultsKitSetPortfolio (PortfolioKey const &in_portfolio)
 Sets the portfolio which was used when the import file read in images and textures. More...
 
ImportResultsKitUnsetPortfolio ()
 Removes the portfolio which was used when the import file imported images and textures. More...
 
bool ShowPortfolio (PortfolioKey &out_portfolio) const
 Shows the portfolio which was used when the import file read in images and textures. More...
 
ImportResultsKitSetHandedness (Drawing::Handedness const &in_handedness)
 Sets the handedness used when importing geometry. More...
 
ImportResultsKitUnsetHandedness ()
 Removes the handedness used to import geometry. More...
 
bool ShowHandedness (Drawing::Handedness &out_handedness) const
 Shows handedness used to import geometry. More...
 
ImportResultsKitUnsetEverything ()
 Removes all settings from this ImportResultsKit. 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

template<typename T >
static intptr_t ClassID ()
 Unique identifier for this class. More...
 

Static Public Attributes

static const HPS::Type staticType = HPS::Type::OBJImportResultsKit
 

Detailed Description

The ImportResultsKit class contains the results of a successful OBJ import.

Constructor & Destructor Documentation

◆ ImportResultsKit() [1/3]

HPS::OBJ::ImportResultsKit::ImportResultsKit ( )

The default constructor creates an empty ImportResultsKit object.

◆ ImportResultsKit() [2/3]

HPS::OBJ::ImportResultsKit::ImportResultsKit ( ImportResultsKit const &  in_kit)

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

Parameters
in_kitThe source ImportResultsKit to copy.

◆ ImportResultsKit() [3/3]

HPS::OBJ::ImportResultsKit::ImportResultsKit ( ImportResultsKit &&  in_that)

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

Parameters
in_thatAn rvalue reference to an ImportResultsKit to take the impl from.

◆ ~ImportResultsKit()

virtual HPS::OBJ::ImportResultsKit::~ImportResultsKit ( )
virtual

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::OBJ::ImportResultsKit::Empty ( ) const
virtual

Indicates whether this ImportResultsKit has any values set on it.

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

Reimplemented from HPS::Object.

◆ Equals()

bool HPS::OBJ::ImportResultsKit::Equals ( ImportResultsKit const &  in_kit) const

Check if the source ImportResultsKit is equivalent to this ImportResultsKit.

Parameters
in_kitThe source ImportResultsKit to compare to this ImportResultsKit.
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.

◆ 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::OBJ::ImportResultsKit::ObjectType ( ) const
inlinevirtual

Reimplemented from HPS::Kit.

Here is the call graph for this function:

◆ operator!=()

bool HPS::OBJ::ImportResultsKit::operator!= ( ImportResultsKit const &  in_kit) const

Check if the source ImportResultsKit is not equivalent to this ImportResultsKit.

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

◆ operator=() [1/2]

ImportResultsKit& HPS::OBJ::ImportResultsKit::operator= ( ImportResultsKit &&  in_that)

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

Parameters
in_thatAn rvalue reference to an ImportResultsKit to take the impl from.
Returns
A reference to this ImportResultsKit.

◆ operator=() [2/2]

ImportResultsKit& HPS::OBJ::ImportResultsKit::operator= ( ImportResultsKit const &  in_kit)

Copies the source ImportResultsKit into this ImportResultsKit.

Parameters
in_kitThe source ImportResultsKit to copy.
Returns
A reference to this ImportResultsKit.

◆ operator==()

bool HPS::OBJ::ImportResultsKit::operator== ( ImportResultsKit const &  in_kit) const

Check if the source ImportResultsKit is equivalent to this ImportResultsKit.

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

◆ Reset()

◆ Set()

void HPS::OBJ::ImportResultsKit::Set ( ImportResultsKit const &  in_kit)

Copies the source ImportResultsKit into this ImportResultsKit.

Parameters
in_kitThe source ImportResultsKit to copy.

◆ SetHandedness()

ImportResultsKit& HPS::OBJ::ImportResultsKit::SetHandedness ( Drawing::Handedness const &  in_handedness)

Sets the handedness used when importing geometry.

This is really only used when generating an ImportResultsKit which is being returned to a user following an OBJ import.

Parameters
in_handednessHandedness used to import geometry.
Returns
A reference to this ImportResultsKit.

◆ SetPortfolio()

ImportResultsKit& HPS::OBJ::ImportResultsKit::SetPortfolio ( PortfolioKey const &  in_portfolio)

Sets the portfolio which was used when the import file read in images and textures.

This is really only used when generating an ImportResultsKit which is being returned to a user following an OBJ import.

Parameters
in_portfolioPortfolio that was used when the file imported images and textures.
Returns
A reference to this ImportResultsKit.

◆ SetSegment()

ImportResultsKit& HPS::OBJ::ImportResultsKit::SetSegment ( SegmentKey const &  in_segment)

Sets the root segment which the OBJ data was imported into.

This is really only used when generating an ImportResultsKit which is being returned to a user following an OBJ import.

Parameters
in_segmentSegment the OBJ data was imported into.
Returns
A reference to this ImportResultsKit.

◆ Show()

void HPS::OBJ::ImportResultsKit::Show ( ImportResultsKit out_kit) const

Copies this ImportResultsKit into the given ImportResultsKit.

Parameters
out_kitThe ImportResultsKit to populate with the contents of this ImportResultsKit.

◆ ShowHandedness()

bool HPS::OBJ::ImportResultsKit::ShowHandedness ( Drawing::Handedness out_handedness) const

Shows handedness used to import geometry.

This was either the root segment specified by the user in the ImportOptionsKit passed to OBJ::File::Import, or the root segment that was created for this purpose during import.

Parameters
out_handednessSegment the OBJ data was imported into.
Returns
true if a handedness was specified, false otherwise.

◆ ShowPortfolio()

bool HPS::OBJ::ImportResultsKit::ShowPortfolio ( PortfolioKey out_portfolio) const

Shows the portfolio which was used when the import file read in images and textures.

This was either the portfolio specified by the user in the ImportOptionsKit passed to OBJ::File::Import, or the portfolio that was created for this purpose during import.

Parameters
in_portfolioPortfolio that was used when the import file read in images and textures.
Returns
true if portfolio was specified, false otherwise.

◆ ShowSegment()

bool HPS::OBJ::ImportResultsKit::ShowSegment ( SegmentKey out_segment) const

Shows the root segment which the OBJ data was imported into.

This was either the root segment specified by the user in the ImportOptionsKit passed to OBJ::File::Import, or the root segment that was created for this purpose during import.

Parameters
out_segmentSegment the OBJ data was imported into.
Returns
true if a root segment was specified, 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()

ImportResultsKit& HPS::OBJ::ImportResultsKit::UnsetEverything ( )

Removes all settings from this ImportResultsKit.

Returns
A reference to this ImportResultsKit.

◆ UnsetHandedness()

ImportResultsKit& HPS::OBJ::ImportResultsKit::UnsetHandedness ( )

Removes the handedness used to import geometry.

This is really only used when generating an ImportResultsKit which is being returned to a user following an OBJ import.

Returns
A reference to this ImportResultsKit.

◆ UnsetPortfolio()

ImportResultsKit& HPS::OBJ::ImportResultsKit::UnsetPortfolio ( )

Removes the portfolio which was used when the import file imported images and textures.

This is really only used when generating an ImportResultsKit which is being returned to a user following an OBJ import.

Returns
A reference to this ImportResultsKit.

◆ UnsetSegment()

ImportResultsKit& HPS::OBJ::ImportResultsKit::UnsetSegment ( )

Removes the root segment which the OBJ data was imported into.

This is really only used when generating an ImportResultsKit which is being returned to a user following an OBJ import.

Returns
A reference to this ImportResultsKit.

Member Data Documentation

◆ staticType

const HPS::Type HPS::OBJ::ImportResultsKit::staticType = HPS::Type::OBJImportResultsKit
static

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