NX Open C++ Reference Guide
|
Represents a Boundary condition object for Metaform. More...
Represents a Boundary condition object for Metaform.
A Metaform feature can have one or more boundary conditions and each condition determines how the mapped geometry will be locked.
To create a new instance of this class, use Features::SheetMetal::MetaformBuilder::CreateSMBoundaryCondition
Created in NX7.5.0.
Returns the constraint name.
If a constraint is added interactively, an automatic name will be generated for the users which can be edited. Each of the constraint name must be unique.
Created in NX7.5.0.
License requirements : None
NXOpen::Features::SheetMetal::SMBoundaryConditionBuilder::ConstraintTypes NXOpen::Features::SheetMetal::SMBoundaryConditionBuilder::ConstraintType | ( | ) |
Returns the constraint type
Created in NX7.5.0.
License requirements : None
Returns the end region curve This input is required if the Constraint Type is NOT Features::SheetMetal::SMBoundaryConditionBuilder::ConstraintTypesPointToPoint .
Created in NX7.5.0.
License requirements : None
Returns the end region point This input is required only if the Constraint Type is Features::SheetMetal::SMBoundaryConditionBuilder::ConstraintTypesPointToPoint .
Created in NX7.5.0.
License requirements : None
void NXOpen::Features::SheetMetal::SMBoundaryConditionBuilder::SetConstraintName | ( | const NXString & | constraintName | ) |
Sets the constraint name.
If a constraint is added interactively, an automatic name will be generated for the users which can be edited. Each of the constraint name must be unique.
Created in NX7.5.0.
License requirements : adv_sheet_metal_dsgn ("ADVANCED SHEET METAL DESIGN")
constraintName | constraintname |
void NXOpen::Features::SheetMetal::SMBoundaryConditionBuilder::SetConstraintType | ( | NXOpen::Features::SheetMetal::SMBoundaryConditionBuilder::ConstraintTypes | constraintType | ) |
Sets the constraint type
Created in NX7.5.0.
License requirements : adv_sheet_metal_dsgn ("ADVANCED SHEET METAL DESIGN")
constraintType | constrainttype |
void NXOpen::Features::SheetMetal::SMBoundaryConditionBuilder::SetEndRegionPoint | ( | NXOpen::Point * | endRegionPoint | ) |
Sets the end region point This input is required only if the Constraint Type is Features::SheetMetal::SMBoundaryConditionBuilder::ConstraintTypesPointToPoint .
Created in NX7.5.0.
License requirements : adv_sheet_metal_dsgn ("ADVANCED SHEET METAL DESIGN")
endRegionPoint | endregionpoint |
void NXOpen::Features::SheetMetal::SMBoundaryConditionBuilder::SetStartRegionPoint | ( | NXOpen::Point * | startRegionPoint | ) |
Sets the start region point.
This input is required only if the Constraint Type is Features::SheetMetal::SMBoundaryConditionBuilder::ConstraintTypesPointToPoint or Features::SheetMetal::SMBoundaryConditionBuilder::ConstraintTypesPointAlongCurve .
Created in NX7.5.0.
License requirements : adv_sheet_metal_dsgn ("ADVANCED SHEET METAL DESIGN")
startRegionPoint | startregionpoint |
Returns the start region curve This input is required only if the Constraint Type is Features::SheetMetal::SMBoundaryConditionBuilder::ConstraintTypesCurveToCurve or Features::SheetMetal::SMBoundaryConditionBuilder::ConstraintTypesCurveAlongCurve .
Created in NX7.5.0.
License requirements : None
Returns the start region point.
This input is required only if the Constraint Type is Features::SheetMetal::SMBoundaryConditionBuilder::ConstraintTypesPointToPoint or Features::SheetMetal::SMBoundaryConditionBuilder::ConstraintTypesPointAlongCurve .
Created in NX7.5.0.
License requirements : None
virtual bool NXOpen::Features::SheetMetal::SMBoundaryConditionBuilder::Validate | ( | ) | [virtual] |
Validate whether the inputs to the component are sufficient for commit to be called.
If the component is not in a state to commit then an exception is thrown. For example, if the component requires you to set some property, this method will throw an exception if you haven't set it. This method throws a not-yet-implemented NXException for some components.
Implements NXOpen::GeometricUtilities::IComponentBuilder.