Open CASCADE Technology
7.4.0
|
Conversion of the complete geometry of a shape (all 3D analytical representation of surfaces and curves) into NURBS geometry (execpt for Planes). For example, all curves supporting edges of the basis shape are converted into BSpline curves, and all surfaces supporting its faces are converted into BSpline surfaces. More...
#include <BRepBuilderAPI_NurbsConvert.hxx>
Public Member Functions | |
BRepBuilderAPI_NurbsConvert () | |
Constructs a framework for converting the geometry of a shape into NURBS geometry. Use the function Perform to define the shape to convert. More... | |
BRepBuilderAPI_NurbsConvert (const TopoDS_Shape &S, const Standard_Boolean Copy=Standard_False) | |
Builds a new shape by converting the geometry of the shape S into NURBS geometry. Specifically, all curves supporting edges of S are converted into BSpline curves, and all surfaces supporting its faces are converted into BSpline surfaces. Use the function Shape to access the new shape. Note: the constructed framework can be reused to convert other shapes. You specify these with the function Perform. More... | |
void | Perform (const TopoDS_Shape &S, const Standard_Boolean Copy=Standard_False) |
Builds a new shape by converting the geometry of the shape S into NURBS geometry. Specifically, all curves supporting edges of S are converted into BSpline curves, and all surfaces supporting its faces are converted into BSpline surfaces. Use the function Shape to access the new shape. Note: this framework can be reused to convert other shapes: you specify them by calling the function Perform again. More... | |
virtual const TopTools_ListOfShape & | Modified (const TopoDS_Shape &S) |
Returns the list of shapes modified from the shape <S>. More... | |
virtual TopoDS_Shape | ModifiedShape (const TopoDS_Shape &S) const |
Returns the modified shape corresponding to <S>. S can correspond to the entire initial shape or to its subshape. Exceptions Standard_NoSuchObject if S is not the initial shape or a subshape of the initial shape to which the transformation has been applied. More... | |
Public Member Functions inherited from BRepBuilderAPI_MakeShape | |
virtual void | Build () |
This is called by Shape(). It does nothing but may be redefined. More... | |
virtual const TopoDS_Shape & | Shape () |
Returns a shape built by the shape construction algorithm. Raises exception StdFail_NotDone if the shape was not built. More... | |
operator TopoDS_Shape () | |
virtual const TopTools_ListOfShape & | Generated (const TopoDS_Shape &S) |
Returns the list of shapes generated from the shape <S>. More... | |
virtual Standard_Boolean | IsDeleted (const TopoDS_Shape &S) |
Returns true if the shape S has been deleted. More... | |
Public Member Functions inherited from BRepBuilderAPI_Command | |
virtual | ~BRepBuilderAPI_Command () |
virtual Standard_Boolean | IsDone () const |
void | Check () const |
Raises NotDone if done is false. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from BRepBuilderAPI_ModifyShape | |
BRepBuilderAPI_ModifyShape () | |
Empty constructor. More... | |
BRepBuilderAPI_ModifyShape (const TopoDS_Shape &S) | |
Initializes the modifier with the Shape <S>, and set the field <myInitialShape> to <S>. More... | |
BRepBuilderAPI_ModifyShape (const Handle< BRepTools_Modification > &M) | |
Set the field <myModification> with <M>. More... | |
BRepBuilderAPI_ModifyShape (const TopoDS_Shape &S, const Handle< BRepTools_Modification > &M) | |
Initializes the modifier with the Shape <S>, and set the field <myInitialShape> to <S>, and set the field <myModification> with <M>, the performs the modification. More... | |
void | DoModif (const TopoDS_Shape &S) |
Performs the previously given modification on the shape <S>. More... | |
void | DoModif (const Handle< BRepTools_Modification > &M) |
Performs the modification <M> on a previously given shape. More... | |
void | DoModif (const TopoDS_Shape &S, const Handle< BRepTools_Modification > &M) |
Performs the modification <M> on the shape <S>. More... | |
Protected Member Functions inherited from BRepBuilderAPI_MakeShape | |
BRepBuilderAPI_MakeShape () | |
Protected Member Functions inherited from BRepBuilderAPI_Command | |
BRepBuilderAPI_Command () | |
Set done to False. More... | |
void | Done () |
Set done to true. More... | |
void | NotDone () |
Set done to false. More... | |
Protected Attributes inherited from BRepBuilderAPI_ModifyShape | |
BRepTools_Modifier | myModifier |
TopoDS_Shape | myInitialShape |
Handle< BRepTools_Modification > | myModification |
Protected Attributes inherited from BRepBuilderAPI_MakeShape | |
TopoDS_Shape | myShape |
TopTools_ListOfShape | myGenerated |
Conversion of the complete geometry of a shape (all 3D analytical representation of surfaces and curves) into NURBS geometry (execpt for Planes). For example, all curves supporting edges of the basis shape are converted into BSpline curves, and all surfaces supporting its faces are converted into BSpline surfaces.
BRepBuilderAPI_NurbsConvert::BRepBuilderAPI_NurbsConvert | ( | ) |
Constructs a framework for converting the geometry of a shape into NURBS geometry. Use the function Perform to define the shape to convert.
BRepBuilderAPI_NurbsConvert::BRepBuilderAPI_NurbsConvert | ( | const TopoDS_Shape & | S, |
const Standard_Boolean | Copy = Standard_False |
||
) |
Builds a new shape by converting the geometry of the shape S into NURBS geometry. Specifically, all curves supporting edges of S are converted into BSpline curves, and all surfaces supporting its faces are converted into BSpline surfaces. Use the function Shape to access the new shape. Note: the constructed framework can be reused to convert other shapes. You specify these with the function Perform.
|
virtual |
Returns the list of shapes modified from the shape <S>.
Reimplemented from BRepBuilderAPI_ModifyShape.
|
virtual |
Returns the modified shape corresponding to <S>. S can correspond to the entire initial shape or to its subshape. Exceptions Standard_NoSuchObject if S is not the initial shape or a subshape of the initial shape to which the transformation has been applied.
Reimplemented from BRepBuilderAPI_ModifyShape.
void BRepBuilderAPI_NurbsConvert::Perform | ( | const TopoDS_Shape & | S, |
const Standard_Boolean | Copy = Standard_False |
||
) |
Builds a new shape by converting the geometry of the shape S into NURBS geometry. Specifically, all curves supporting edges of S are converted into BSpline curves, and all surfaces supporting its faces are converted into BSpline surfaces. Use the function Shape to access the new shape. Note: this framework can be reused to convert other shapes: you specify them by calling the function Perform again.