NX Open C++ Reference Guide
|
Represents a laminate layup in the global layup context (ply based modeling), which is defined by a sequence of CAE::LaminatePlyGroup , each with a name and a list of plies. More...
Classes | |
class | iterator |
Iterator for accessing the contents of the collection. More... | |
Public Member Functions | |
iterator | begin () |
Returns an iterator addressing the first element. | |
void | DeletePlyGroup (int groupIndex) |
Deletes a CAE::LaminatePlyGroup by index Created in NX6.0.0. | |
iterator | end () |
Returns an iterator addressing one past the last element. | |
NXOpen::CAE::LaminatePlyGroup * | FindObject (const NXString &journalIdentifier) |
Finds the CAE::LaminatePlyGroup with the given identifier as recorded in a journal. | |
NXOpen::CAE::LaminatePlyGroup * | FindObject (const char *journalIdentifier) |
Finds the CAE::LaminatePlyGroup with the given identifier as recorded in a journal. | |
NXOpen::CAE::LaminatePlyGroup * | GetPlyGroup (int groupIndex) |
Finds a CAE::LaminatePlyGroup from layup. | |
NXOpen::CAE::LaminatePlyGroup * | InsertLinkedPlyGroup (const NXString &name, NXOpen::CAE::LaminatePlyGroup::Link linkType, const NXString &parentName, int insertionIndex) |
Creates a linked CAE::LaminatePlyGroup inserted in the laminate layup at the specified index. | |
NXOpen::CAE::LaminatePlyGroup * | InsertLinkedPlyGroup (const char *name, NXOpen::CAE::LaminatePlyGroup::Link linkType, const char *parentName, int insertionIndex) |
Creates a linked CAE::LaminatePlyGroup inserted in the laminate layup at the specified index. | |
NXOpen::CAE::LaminatePly * | InsertPlyExtension (NXOpen::CAE::LaminatePlyGroup *plyGroup, int insertionIndex, NXOpen::CAE::LaminatePly *targetPly) |
Creates an extension CAE::LaminatePly. | |
NXOpen::CAE::LaminatePlyGroup * | InsertPlyGroup (const NXString &name, int insertionIndex) |
Creates an empty CAE::LaminatePlyGroup inserted in the laminate layup at the specified index. | |
NXOpen::CAE::LaminatePlyGroup * | InsertPlyGroup (const char *name, int insertionIndex) |
Creates an empty CAE::LaminatePlyGroup inserted in the laminate layup at the specified index. | |
NXOpen::CAE::LaminatePlyGroup * | InsertSinglePly (int insertionIndex) |
Creates a new, simple CAE::LaminatePlyGroup holding a default ply, and inserted in the laminate layup at the specified index. | |
tag_t | Tag () const |
Returns the tag of this object. | |
Represents a laminate layup in the global layup context (ply based modeling), which is defined by a sequence of CAE::LaminatePlyGroup , each with a name and a list of plies.
To obtain an instance of this class, refer to CAE::LaminateGlobalLayup
Created in NX6.0.0.
iterator NXOpen::CAE::LaminateGlobalLayupPlyGroupCollection::begin | ( | ) |
Returns an iterator addressing the first element.
void NXOpen::CAE::LaminateGlobalLayupPlyGroupCollection::DeletePlyGroup | ( | int | groupIndex | ) |
Deletes a CAE::LaminatePlyGroup by index
Created in NX6.0.0.
License requirements : nx_lam_composites ("Laminate Composites")
groupIndex | index of group to remove |
iterator NXOpen::CAE::LaminateGlobalLayupPlyGroupCollection::end | ( | ) |
Returns an iterator addressing one past the last element.
NXOpen::CAE::LaminatePlyGroup* NXOpen::CAE::LaminateGlobalLayupPlyGroupCollection::FindObject | ( | const NXString & | journalIdentifier | ) |
Finds the CAE::LaminatePlyGroup with the given identifier as recorded in a journal.
An exception will be thrown if no object can be found with the given journal identifier. @return ply group found
Created in NX7.5.0.
License requirements : nx_lam_composites ("Laminate Composites")
journalIdentifier | Identifier to be found |
NXOpen::CAE::LaminatePlyGroup* NXOpen::CAE::LaminateGlobalLayupPlyGroupCollection::FindObject | ( | const char * | journalIdentifier | ) |
Finds the CAE::LaminatePlyGroup with the given identifier as recorded in a journal.
An exception will be thrown if no object can be found with the given journal identifier. @return ply group found
Created in NX7.5.0.
License requirements : nx_lam_composites ("Laminate Composites")
journalIdentifier | Identifier to be found |
NXOpen::CAE::LaminatePlyGroup* NXOpen::CAE::LaminateGlobalLayupPlyGroupCollection::GetPlyGroup | ( | int | groupIndex | ) |
Finds a CAE::LaminatePlyGroup from layup.
groupIndex | index in the sequence |
NXOpen::CAE::LaminatePlyGroup* NXOpen::CAE::LaminateGlobalLayupPlyGroupCollection::InsertLinkedPlyGroup | ( | const NXString & | name, |
NXOpen::CAE::LaminatePlyGroup::Link | linkType, | ||
const NXString & | parentName, | ||
int | insertionIndex | ||
) |
Creates a linked CAE::LaminatePlyGroup inserted in the laminate layup at the specified index.
name | Name of ply group NOTE: The full Unicode character set is not supported for this parameter. |
linkType | Type of link |
parentName | name of parent PlyGroup NOTE: The full Unicode character set is not supported for this parameter. |
insertionIndex | index in the sequence to insert at |
NXOpen::CAE::LaminatePlyGroup* NXOpen::CAE::LaminateGlobalLayupPlyGroupCollection::InsertLinkedPlyGroup | ( | const char * | name, |
NXOpen::CAE::LaminatePlyGroup::Link | linkType, | ||
const char * | parentName, | ||
int | insertionIndex | ||
) |
Creates a linked CAE::LaminatePlyGroup inserted in the laminate layup at the specified index.
name | Name of ply group NOTE: The full Unicode character set is not supported for this parameter. |
linkType | Type of link |
parentName | name of parent PlyGroup NOTE: The full Unicode character set is not supported for this parameter. |
insertionIndex | index in the sequence to insert at |
NXOpen::CAE::LaminatePly* NXOpen::CAE::LaminateGlobalLayupPlyGroupCollection::InsertPlyExtension | ( | NXOpen::CAE::LaminatePlyGroup * | plyGroup, |
int | insertionIndex, | ||
NXOpen::CAE::LaminatePly * | targetPly | ||
) |
Creates an extension CAE::LaminatePly.
plyGroup | Group in which the ply is to be added. If NULL, then a single ply group will be created. |
insertionIndex | Index in the sequence to insert at. |
targetPly | Target of the ply extension |
NXOpen::CAE::LaminatePlyGroup* NXOpen::CAE::LaminateGlobalLayupPlyGroupCollection::InsertPlyGroup | ( | const NXString & | name, |
int | insertionIndex | ||
) |
Creates an empty CAE::LaminatePlyGroup inserted in the laminate layup at the specified index.
name | Name of ply group NOTE: The full Unicode character set is not supported for this parameter. |
insertionIndex | index in the sequence to insert at |
NXOpen::CAE::LaminatePlyGroup* NXOpen::CAE::LaminateGlobalLayupPlyGroupCollection::InsertPlyGroup | ( | const char * | name, |
int | insertionIndex | ||
) |
Creates an empty CAE::LaminatePlyGroup inserted in the laminate layup at the specified index.
name | Name of ply group NOTE: The full Unicode character set is not supported for this parameter. |
insertionIndex | index in the sequence to insert at |
NXOpen::CAE::LaminatePlyGroup* NXOpen::CAE::LaminateGlobalLayupPlyGroupCollection::InsertSinglePly | ( | int | insertionIndex | ) |
Creates a new, simple CAE::LaminatePlyGroup holding a default ply, and inserted in the laminate layup at the specified index.
insertionIndex | index in the sequence to insert at |
tag_t NXOpen::CAE::LaminateGlobalLayupPlyGroupCollection::Tag | ( | ) | const |
Returns the tag of this object.