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::Parasolid::ImportOptionsKit Class Reference

The ImportOptionsKit class is a user space object. More...

#include <sprk_parasolid.h>

Inheritance diagram for HPS::Parasolid::ImportOptionsKit:
Collaboration diagram for HPS::Parasolid::ImportOptionsKit:

Public Member Functions

 ImportOptionsKit ()
 The default constructor creates an empty ImportOptionsKit object. More...
 
 ImportOptionsKit (ImportOptionsKit const &in_kit)
 The copy constructor creates a new ImportOptionsKit object that contains the same settings as the source ImportOptionsKit. More...
 
 ImportOptionsKit (ImportOptionsKit &&in_that)
 The move constructor creates an ImportOptionsKit by transferring the underlying impl of the rvalue reference to this ImportOptionsKit thereby avoiding a copy and allocation. More...
 
ImportOptionsKitoperator= (ImportOptionsKit &&in_that)
 The move assignment operator transfers the underlying impl of the rvalue reference to this ImportOptionsKit thereby avoiding a copy. More...
 
virtual ~ImportOptionsKit ()
 
HPS::Type ObjectType () const
 
void Set (ImportOptionsKit const &in_kit)
 Copies the source ImportOptionsKit into this ImportOptionsKit. More...
 
void Show (ImportOptionsKit &out_kit) const
 Copies this ImportOptionsKit into the given ImportOptionsKit. More...
 
ImportOptionsKitoperator= (ImportOptionsKit const &in_kit)
 Copies the source ImportOptionsKit into this ImportOptionsKit. More...
 
bool Empty () const
 Indicates whether this ImportOptionsKit has any values set on it. More...
 
bool Equals (ImportOptionsKit const &in_kit) const
 Check if the source ImportOptionsKit is equivalent to this ImportOptionsKit. More...
 
bool operator== (ImportOptionsKit const &in_kit) const
 Check if the source ImportOptionsKit is equivalent to this ImportOptionsKit. More...
 
bool operator!= (ImportOptionsKit const &in_kit) const
 Check if the source ImportOptionsKit is not equivalent to this ImportOptionsKit. More...
 
ImportOptionsKitSetFormat (Parasolid::Format in_format)
 Sets the format type to be imported. More...
 
ImportOptionsKitSetUserFields (bool in_import_user_fields)
 Sets whether to import user fields from the CAD file. More...
 
ImportOptionsKitSetAttributeMismatchBehavior (Parasolid::MismatchBehavior in_behavior)
 Sets the importer behavior for mismatched attributes. More...
 
ImportOptionsKitSetCompoundBodyBehavior (Parasolid::CompoundBodyBehavior in_behavior)
 Sets the importer behavior for compound bodies. More...
 
ImportOptionsKitSetFacetTessellation (Parasolid::FacetTessellationKit const &in_facet_tessellation_kit)
 Sets the facet tessellation settings used during import This corresponds to the PK_TOPOL_render_facet_o_t struct. More...
 
ImportOptionsKitSetLineTessellation (Parasolid::LineTessellationKit const &in_line_tessellation_kit)
 Sets the line tessellation settings used during import This corresponds to the PK_TOPOL_render_line_o_t struct. More...
 
ImportOptionsKitSetLocation (ComponentPath const &in_path, MatrixKit const &in_transform=MatrixKit())
 Sets where to insert the imported file in an existing Component hierarchy. More...
 
ImportOptionsKitUnsetFormat ()
 Removes the format import state. More...
 
ImportOptionsKitUnsetUserFields ()
 Removes the user fields import state. More...
 
ImportOptionsKitUnsetAttributeMismatchBehavior ()
 Removes the attribute mismatch behavior state. More...
 
ImportOptionsKitUnsetCompoundBodyBehavior ()
 Removes the compound body behavior state. More...
 
ImportOptionsKitUnsetFacetTessellation ()
 Removes the facet tessellation state. More...
 
ImportOptionsKitUnsetLineTessellation ()
 Removes the line tessellation state. More...
 
ImportOptionsKitUnsetLocation ()
 Removes the location state. More...
 
ImportOptionsKitUnsetEverything ()
 Removes all settings from this ImportOptionsKit. More...
 
bool ShowFormat (Parasolid::Format &out_format) const
 Shows the format import setting. More...
 
bool ShowUserFields (bool &out_user_fields) const
 Shows the user fields import setting. More...
 
bool ShowAttributeMismatchBehavior (Parasolid::MismatchBehavior &out_behavior) const
 Shows the attribute mismatch behavior import setting. More...
 
bool ShowCompoundBodyBehavior (Parasolid::CompoundBodyBehavior &out_behavior) const
 Shows the compound body behavior import setting. More...
 
bool ShowFacetTessellation (Parasolid::FacetTessellationKit &out_facet_tessellation) const
 Shows the facet tessellation import setting. More...
 
bool ShowLineTessellation (Parasolid::LineTessellationKit &out_line_tessellation) const
 Shows the line tessellation import setting. More...
 
bool ShowLocation (ComponentPath &out_path, MatrixKit &out_transformation) const
 Shows the location setting. 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 ImportOptionsKit GetDefault ()
 Creates an ImportOptionsKit 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::ParasolidImportOptionsKit
 

Detailed Description

The ImportOptionsKit class is a user space object.

It contains settings controlling what and how data is imported via the Parasolid interface. Calling HPS::Parasolid::ImportOptionsKit::GetDefault() will return an options kit with values found in here.

Constructor & Destructor Documentation

◆ ImportOptionsKit() [1/3]

HPS::Parasolid::ImportOptionsKit::ImportOptionsKit ( )

The default constructor creates an empty ImportOptionsKit object.

◆ ImportOptionsKit() [2/3]

HPS::Parasolid::ImportOptionsKit::ImportOptionsKit ( ImportOptionsKit const &  in_kit)

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

Parameters
in_kitThe source ImportOptionsKit to copy.

◆ ImportOptionsKit() [3/3]

HPS::Parasolid::ImportOptionsKit::ImportOptionsKit ( ImportOptionsKit &&  in_that)

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

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

◆ ~ImportOptionsKit()

virtual HPS::Parasolid::ImportOptionsKit::~ImportOptionsKit ( )
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::Parasolid::ImportOptionsKit::Empty ( ) const
virtual

Indicates whether this ImportOptionsKit has any values set on it.

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

Reimplemented from HPS::Object.

◆ Equals()

bool HPS::Parasolid::ImportOptionsKit::Equals ( ImportOptionsKit const &  in_kit) const

Check if the source ImportOptionsKit is equivalent to this ImportOptionsKit.

Parameters
in_kitThe source ImportOptionsKit to compare to this ImportOptionsKit.
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 ImportOptionsKit HPS::Parasolid::ImportOptionsKit::GetDefault ( )
static

Creates an ImportOptionsKit 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. These values will be used for import unless an option is overridden by the options passed to File::Import.

Returns
An ImportOptionsKit 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::Parasolid::ImportOptionsKit::ObjectType ( ) const
inlinevirtual

Reimplemented from HPS::SprocketKit.

Here is the call graph for this function:

◆ operator!=()

bool HPS::Parasolid::ImportOptionsKit::operator!= ( ImportOptionsKit const &  in_kit) const

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

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

◆ operator=() [1/2]

ImportOptionsKit& HPS::Parasolid::ImportOptionsKit::operator= ( ImportOptionsKit &&  in_that)

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

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

◆ operator=() [2/2]

ImportOptionsKit& HPS::Parasolid::ImportOptionsKit::operator= ( ImportOptionsKit const &  in_kit)

Copies the source ImportOptionsKit into this ImportOptionsKit.

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

◆ operator==()

bool HPS::Parasolid::ImportOptionsKit::operator== ( ImportOptionsKit const &  in_kit) const

Check if the source ImportOptionsKit is equivalent to this ImportOptionsKit.

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

◆ Reset()

◆ Set()

void HPS::Parasolid::ImportOptionsKit::Set ( ImportOptionsKit const &  in_kit)

Copies the source ImportOptionsKit into this ImportOptionsKit.

Parameters
in_kitThe source ImportOptionsKit to copy.

◆ SetAttributeMismatchBehavior()

ImportOptionsKit& HPS::Parasolid::ImportOptionsKit::SetAttributeMismatchBehavior ( Parasolid::MismatchBehavior  in_behavior)

Sets the importer behavior for mismatched attributes.

This corresponds to the value that will be passed to PK_PART_receive_o_t.attdef_mismatch.

Parameters
in_behaviorThe behavior of the importer when mismatched attributes are found.
Returns
A reference to this ImportOptionsKit.
See also
Default value

◆ SetCompoundBodyBehavior()

ImportOptionsKit& HPS::Parasolid::ImportOptionsKit::SetCompoundBodyBehavior ( Parasolid::CompoundBodyBehavior  in_behavior)

Sets the importer behavior for compound bodies.

This corresponds to the value that will be passed to PK_PART_receive_o_t.receive_compound.

Parameters
in_behaviorThe behavior of the importer when compound bodies are found.
Returns
A reference to this ImportOptionsKit.
See also
Default value

◆ SetFacetTessellation()

ImportOptionsKit& HPS::Parasolid::ImportOptionsKit::SetFacetTessellation ( Parasolid::FacetTessellationKit const &  in_facet_tessellation_kit)

Sets the facet tessellation settings used during import This corresponds to the PK_TOPOL_render_facet_o_t struct.

Parameters
in_facet_tessellation_kitThe facet tessellation settings used during import
Returns
A reference to this ImportOptionsKit.

◆ SetFormat()

ImportOptionsKit& HPS::Parasolid::ImportOptionsKit::SetFormat ( Parasolid::Format  in_format)

Sets the format type to be imported.

This corresponds to the value that will be passed to PK_PART_receive_o_t.transmit_format.

Parameters
in_formatThe format of the file to be imported.
Returns
A reference to this ImportOptionsKit.
See also
Default value

◆ SetLineTessellation()

ImportOptionsKit& HPS::Parasolid::ImportOptionsKit::SetLineTessellation ( Parasolid::LineTessellationKit const &  in_line_tessellation_kit)

Sets the line tessellation settings used during import This corresponds to the PK_TOPOL_render_line_o_t struct.

Parameters
in_facet_tessellation_kitThe line tessellation settings used during import
Returns
A reference to this ImportOptionsKit.

◆ SetLocation()

ImportOptionsKit& HPS::Parasolid::ImportOptionsKit::SetLocation ( ComponentPath const &  in_path,
MatrixKit const &  in_transform = MatrixKit() 
)

Sets where to insert the imported file in an existing Component hierarchy.

If this option is not set, a new CADModel will be created for the imported file. If this option is specified, the underlying Parasolid data of the existing CADModel will be modified to include the imported file and the data will be imported into the specified location in the existing Component hierarchy and its corresponding scene graph. The file will be imported in the same PK_PARTITION_t as the one to which entities in in_path belong.

Parameters
in_pathThe path describing the location to insert the imported file into. This path must either terminate at a CADModel or a Component corresponding to a Parasolid Assembly. Note that if the imported file is added along a component path with attributes specified in the Parasolid data, the components added to the existing Parasolid data will also inherit those attributes.
in_transformA transform to apply to the components being added to the existing CADModel. This transform will also be added to the underlying Parasolid data. Valid transformations are limited to translations, rotations, uniform scaling and reflection. If the transform does not conform to these limitations it will be ignored. Defaults to an identity transform.
Returns
A reference to this ImportOptionsKit.

◆ SetUserFields()

ImportOptionsKit& HPS::Parasolid::ImportOptionsKit::SetUserFields ( bool  in_import_user_fields)

Sets whether to import user fields from the CAD file.

This corresponds to the value that will be passed to PK_PART_receive_o_t.receive_user_fields.

Parameters
in_import_user_fieldsWhether to import user fields from the CAD file.
Returns
A reference to this ImportOptionsKit.
See also
Default value

◆ Show()

void HPS::Parasolid::ImportOptionsKit::Show ( ImportOptionsKit out_kit) const

Copies this ImportOptionsKit into the given ImportOptionsKit.

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

◆ ShowAttributeMismatchBehavior()

bool HPS::Parasolid::ImportOptionsKit::ShowAttributeMismatchBehavior ( Parasolid::MismatchBehavior out_behavior) const

Shows the attribute mismatch behavior import setting.

Parameters
out_behaviorThe attribute mismatch behavior setting for this import.
Returns
true if an attribute mismatch behavior setting was specified, false otherwise.

◆ ShowCompoundBodyBehavior()

bool HPS::Parasolid::ImportOptionsKit::ShowCompoundBodyBehavior ( Parasolid::CompoundBodyBehavior out_behavior) const

Shows the compound body behavior import setting.

Parameters
out_behaviorThe compound body behavior setting for this import.
Returns
true if a compound body behavior setting was specified, false otherwise.

◆ ShowFacetTessellation()

bool HPS::Parasolid::ImportOptionsKit::ShowFacetTessellation ( Parasolid::FacetTessellationKit out_facet_tessellation) const

Shows the facet tessellation import setting.

Parameters
out_facet_tessellationThe facet tessellation setting for this import.
Returns
true if a facet tessellation setting was specified, false otherwise.

◆ ShowFormat()

bool HPS::Parasolid::ImportOptionsKit::ShowFormat ( Parasolid::Format out_format) const

Shows the format import setting.

Parameters
out_formatThe format setting for this import.
Returns
true if a format setting was specified, false otherwise.

◆ ShowLineTessellation()

bool HPS::Parasolid::ImportOptionsKit::ShowLineTessellation ( Parasolid::LineTessellationKit out_line_tessellation) const

Shows the line tessellation import setting.

Parameters
out_line_tessellationThe line tessellation setting for this import.
Returns
true if a line tessellation setting was specified, false otherwise.

◆ ShowLocation()

bool HPS::Parasolid::ImportOptionsKit::ShowLocation ( ComponentPath out_path,
MatrixKit out_transformation 
) const

Shows the location setting.

Parameters
out_pathThe path describing the location to insert the imported file into.
out_transformThe transform to apply to the components being added to the existing CADModel.
Returns
true if a location setting was specified, false otherwise.

◆ ShowUserFields()

bool HPS::Parasolid::ImportOptionsKit::ShowUserFields ( bool &  out_user_fields) const

Shows the user fields import setting.

Parameters
out_user_fieldsThe user fields setting for this import.
Returns
true if a user fields setting was specified, false otherwise.

◆ Type()

◆ UnsetAttributeMismatchBehavior()

ImportOptionsKit& HPS::Parasolid::ImportOptionsKit::UnsetAttributeMismatchBehavior ( )

Removes the attribute mismatch behavior state.

Returns
A reference to this ImportOptionsKit.

◆ UnsetCompoundBodyBehavior()

ImportOptionsKit& HPS::Parasolid::ImportOptionsKit::UnsetCompoundBodyBehavior ( )

Removes the compound body behavior state.

Returns
A reference to this ImportOptionsKit.

◆ UnsetEverything()

ImportOptionsKit& HPS::Parasolid::ImportOptionsKit::UnsetEverything ( )

Removes all settings from this ImportOptionsKit.

Returns
A reference to this ImportOptionsKit.

◆ UnsetFacetTessellation()

ImportOptionsKit& HPS::Parasolid::ImportOptionsKit::UnsetFacetTessellation ( )

Removes the facet tessellation state.

Returns
A reference to this ImportOptionsKit.

◆ UnsetFormat()

ImportOptionsKit& HPS::Parasolid::ImportOptionsKit::UnsetFormat ( )

Removes the format import state.

Returns
A reference to this ImportOptionsKit.

◆ UnsetLineTessellation()

ImportOptionsKit& HPS::Parasolid::ImportOptionsKit::UnsetLineTessellation ( )

Removes the line tessellation state.

Returns
A reference to this ImportOptionsKit.

◆ UnsetLocation()

ImportOptionsKit& HPS::Parasolid::ImportOptionsKit::UnsetLocation ( )

Removes the location state.

Returns
A reference to this ImportOptionsKit.

◆ UnsetUserFields()

ImportOptionsKit& HPS::Parasolid::ImportOptionsKit::UnsetUserFields ( )

Removes the user fields import state.

Returns
A reference to this ImportOptionsKit.

Member Data Documentation

◆ staticType

const HPS::Type HPS::Parasolid::ImportOptionsKit::staticType = HPS::Type::ParasolidImportOptionsKit
static

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