NX Open C++ Reference Guide
|
Represents the curve fit data. More...
Public Types | |
enum | FitMethod { FitMethodCubic, FitMethodQuintic, FitMethodAdvanced } |
Represents the curve fit method. More... | |
Public Member Functions | |
NXOpen::GeometricUtilities::CurveFitOptions::FitMethod | FitOption () |
Returns the curve fit method Created in NX5.0.0. | |
int | MaximumDegree () |
Returns the maximum degree method. | |
int | MaximumSegments () |
Returns the maximum segments method. | |
void | SetFitOption (NXOpen::GeometricUtilities::CurveFitOptions::FitMethod curveFitMethod) |
Sets the curve fit method Created in NX5.0.0. | |
void | SetMaximumDegree (int maximumDegree) |
Sets the maximum degree method. | |
void | SetMaximumSegments (int maximumSegments) |
Sets the maximum segments method. | |
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 the curve fit data.
Created in NX5.0.0.
NXOpen::GeometricUtilities::CurveFitOptions::FitMethod NXOpen::GeometricUtilities::CurveFitOptions::FitOption | ( | ) |
Returns the curve fit method
Created in NX5.0.0.
License requirements : solid_modeling ("SOLIDS MODELING") OR cam_base ("CAM BASE")
int NXOpen::GeometricUtilities::CurveFitOptions::MaximumDegree | ( | ) |
Returns the maximum degree method.
Created in NX5.0.0.
License requirements : solid_modeling ("SOLIDS MODELING") OR cam_base ("CAM BASE")
int NXOpen::GeometricUtilities::CurveFitOptions::MaximumSegments | ( | ) |
Returns the maximum segments method.
Created in NX5.0.0.
License requirements : solid_modeling ("SOLIDS MODELING") OR cam_base ("CAM BASE")
void NXOpen::GeometricUtilities::CurveFitOptions::SetFitOption | ( | NXOpen::GeometricUtilities::CurveFitOptions::FitMethod | curveFitMethod | ) |
Sets the curve fit method
Created in NX5.0.0.
License requirements : solid_modeling ("SOLIDS MODELING") OR cam_base ("CAM BASE")
curveFitMethod | curve fit method |
void NXOpen::GeometricUtilities::CurveFitOptions::SetMaximumDegree | ( | int | maximumDegree | ) |
Sets the maximum degree method.
Created in NX5.0.0.
License requirements : solid_modeling ("SOLIDS MODELING") OR cam_base ("CAM BASE")
maximumDegree | maximum degree method |
void NXOpen::GeometricUtilities::CurveFitOptions::SetMaximumSegments | ( | int | maximumSegments | ) |
Sets the maximum segments method.
Created in NX5.0.0.
License requirements : solid_modeling ("SOLIDS MODELING") OR cam_base ("CAM BASE")
maximumSegments | maximum segments |
|
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.