NX Open C++ Reference Guide
|
Represents a GeometricUtilities::OrientationMethodBuilder. More...
Public Types | |
enum | OrientationOptions { OrientationOptionsFixed, OrientationOptionsByFaceNormals, OrientationOptionsByVectorDirection, OrientationOptionsByAnotherCurve, OrientationOptionsByAPoint, OrientationOptionsByAngularLaw, OrientationOptionsByForcedDirection } |
This enum represents the orientation option. More... | |
Public Member Functions | |
NXOpen::GeometricUtilities::LawBuilder * | AngularLaw () |
Returns the angular law. | |
NXOpen::SelectFaceList * | NormalFaceList () |
Returns the normal face list. | |
NXOpen::Section * | OrientationCurve () |
Returns the orientation curve. | |
NXOpen::GeometricUtilities::OrientationMethodBuilder::OrientationOptions | OrientationOption () |
Returns the orientation option. | |
NXOpen::Point * | OrientationPoint () |
Returns the orientation point. | |
NXOpen::Direction * | OrientationVector () |
Returns the orientation vector. | |
void | SetOrientationOption (NXOpen::GeometricUtilities::OrientationMethodBuilder::OrientationOptions orientationOption) |
Sets the orientation option. | |
void | SetOrientationPoint (NXOpen::Point *orientationPoint) |
Sets the orientation point. | |
void | SetOrientationVector (NXOpen::Direction *orientationVector) |
Sets the orientation vector. | |
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 GeometricUtilities::OrientationMethodBuilder.
Created in NX5.0.0.
This enum represents the orientation option.
By default, it is set to Fixed. Angular Law orientation option is invalid if 2 guides are selected.
OrientationOptionsFixed |
Fixed. |
OrientationOptionsByFaceNormals |
Face Normals. |
OrientationOptionsByVectorDirection |
Vector Direction. |
OrientationOptionsByAnotherCurve |
Another Curve. |
OrientationOptionsByAPoint |
A Point. |
OrientationOptionsByAngularLaw |
Angular Law. |
OrientationOptionsByForcedDirection |
Forced Direction. |
NXOpen::GeometricUtilities::LawBuilder* NXOpen::GeometricUtilities::OrientationMethodBuilder::AngularLaw | ( | ) |
Returns the angular law.
For orientation by an Angular Law, the section rotation along the guide curve is governed by the input law.
Created in NX5.0.0.
License requirements : None
NXOpen::SelectFaceList* NXOpen::GeometricUtilities::OrientationMethodBuilder::NormalFaceList | ( | ) |
Returns the normal face list.
For orientation by Face Normals, the second axis of the local coordinate system is aligned with the resultant of normals of the input faces.
Created in NX5.0.0.
License requirements : None
NXOpen::Section* NXOpen::GeometricUtilities::OrientationMethodBuilder::OrientationCurve | ( | ) |
Returns the orientation curve.
For orientation by Another Curve, the second axis of the local coordinate system is obtained by joining corresponding points on the guide and the input section.
Created in NX5.0.0.
License requirements : None
NXOpen::GeometricUtilities::OrientationMethodBuilder::OrientationOptions NXOpen::GeometricUtilities::OrientationMethodBuilder::OrientationOption | ( | ) |
Returns the orientation option.
Except for Fixed orientation method, additional parameters and/or inputs are required.
Created in NX5.0.0.
License requirements : None
NXOpen::Point* NXOpen::GeometricUtilities::OrientationMethodBuilder::OrientationPoint | ( | ) |
Returns the orientation point.
For orientation by a Point, the second axis is obtained with the equivalent of a three-sided ruled sheet between the guide string and the input point.
Created in NX5.0.0.
License requirements : None
NXOpen::Direction* NXOpen::GeometricUtilities::OrientationMethodBuilder::OrientationVector | ( | ) |
Returns the orientation vector.
For orientation by Vector, the second axis of the local coordinate system is aligned with the input vector.
Created in NX5.0.0.
License requirements : None
void NXOpen::GeometricUtilities::OrientationMethodBuilder::SetOrientationOption | ( | NXOpen::GeometricUtilities::OrientationMethodBuilder::OrientationOptions | orientationOption | ) |
Sets the orientation option.
Except for Fixed orientation method, additional parameters and/or inputs are required.
Created in NX5.0.0.
License requirements : solid_modeling ("SOLIDS MODELING")
orientationOption | orientationoption |
void NXOpen::GeometricUtilities::OrientationMethodBuilder::SetOrientationPoint | ( | NXOpen::Point * | orientationPoint | ) |
Sets the orientation point.
For orientation by a Point, the second axis is obtained with the equivalent of a three-sided ruled sheet between the guide string and the input point.
Created in NX5.0.0.
License requirements : solid_modeling ("SOLIDS MODELING")
orientationPoint | orientationpoint |
void NXOpen::GeometricUtilities::OrientationMethodBuilder::SetOrientationVector | ( | NXOpen::Direction * | orientationVector | ) |
Sets the orientation vector.
For orientation by Vector, the second axis of the local coordinate system is aligned with the input vector.
Created in NX5.0.0.
License requirements : solid_modeling ("SOLIDS MODELING")
orientationVector | orientationvector |
|
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.