LinkCollection Class

class NXOpen.Motion.LinkCollection

Bases: object

Represents a collection of motion joints

To obtain an instance of this class, refer to NXOpen.Motion.MotionManager

New in version NX5.0.0.

Methods

Method Description
CreateFixedJoint Creates a NXOpen.Motion.Joint
CreateLinkBuilder Creates a NXOpen.Motion.LinkBuilder
FindObject Finds the NXOpen.Motion.Link with the given name.

Method Detail

CreateFixedJoint

LinkCollection.CreateFixedJoint

Creates a NXOpen.Motion.Joint

Signature CreateFixedJoint(link)

Parameters:link (NXOpen.Motion.Link) – NXOpen.Motion.Link to be used to create relate fixed joint
Returns:
Return type:NXOpen.Motion.Joint

New in version NX6.0.0.

License requirements: mechanisms (“MECHANISMS”)

CreateLinkBuilder

LinkCollection.CreateLinkBuilder

Creates a NXOpen.Motion.LinkBuilder

Signature CreateLinkBuilder(link)

Parameters:link (NXOpen.Motion.Link) – NXOpen.Motion.Link to be edited, if None then create a new one
Returns:
Return type:NXOpen.Motion.LinkBuilder

New in version NX5.0.0.

License requirements: mechanisms (“MECHANISMS”)

FindObject

LinkCollection.FindObject

Finds the NXOpen.Motion.Link with the given name.

An exception will be thrown if no object can be found with given name.

Signature FindObject(name)

Parameters:name (str) – The name of the NXOpen.Motion.Link.
Returns:NXOpen.Motion.Link with this name.
Return type:NXOpen.Motion.Link

New in version NX5.0.0.

License requirements: mechanisms (“MECHANISMS”)