NX Open C++ Reference Guide
|
Represents a CAM boundary object
Created in NX9.0.0.
More...
Public Member Functions | |
std::vector < NXOpen::CAM::BoundarySet * > | AppendFaceBoundary (NXOpen::TaggedObject *face, bool ignoreHole, bool ignoreIsland, bool ignoreChamfer, NXOpen::CAM::BoundarySet::ToolSideTypes toolSide) |
Append the face boundary. | |
NXOpen::CAM::BoundarySetList * | BoundaryList () |
返回边界列表 Created in NX9.0.0. | |
NXOpen::CAM::BoundaryMillingSet * | CreateBoundaryMillingSet () |
Create an empty milling boundary set. | |
NXOpen::CAM::BoundarySet * | CreateBoundarySet () |
Create an empty boundary set. | |
void | RemoveFaceBoundary (NXOpen::TaggedObject *face) |
Remove the face boundaries Created in NX9.0.0. | |
virtual bool | Validate () |
Validate whether the inputs to the component are sufficient for commit to be called. | |
![]() | |
tag_t | GetTag () const |
<b>Deprecated</b>:<br> Use Tag instead. | |
tag_t | Tag () const |
Returns the tag of this object. | |
Represents a CAM boundary object
Created in NX9.0.0.
std::vector<NXOpen::CAM::BoundarySet *> NXOpen::CAM::Boundary::AppendFaceBoundary | ( | NXOpen::TaggedObject * | face, |
bool | ignoreHole, | ||
bool | ignoreIsland, | ||
bool | ignoreChamfer, | ||
NXOpen::CAM::BoundarySet::ToolSideTypes | toolSide | ||
) |
Append the face boundary.
face | the face to create boundaries |
ignoreHole | flag to ignore holes in face |
ignoreIsland | flag to ignore islands on face |
ignoreChamfer | flag to ignore chamfers on face |
toolSide | tool side for the face boundary |
NXOpen::CAM::BoundarySetList* NXOpen::CAM::Boundary::BoundaryList | ( | ) |
Returns the boundary list
Created in NX9.0.0.
License requirements : None
NXOpen::CAM::BoundaryMillingSet* NXOpen::CAM::Boundary::CreateBoundaryMillingSet | ( | ) |
Create an empty milling boundary set.
NXOpen::CAM::BoundarySet* NXOpen::CAM::Boundary::CreateBoundarySet | ( | ) |
Create an empty boundary set.
void NXOpen::CAM::Boundary::RemoveFaceBoundary | ( | NXOpen::TaggedObject * | face | ) |
Remove the face boundaries
Created in NX9.0.0.
License requirements : cam_base ("CAM BASE")
face | the face to be removed |
|
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.