NX Open C++ Reference Guide
|
Represents a GeometricUtilities::OrientationMethodBuilder. More...
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
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
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
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
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 bool NXOpen::GeometricUtilities::OrientationMethodBuilder::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.