diff --git a/samples/CSharp/OCCTProxy/OCCTProxy.cpp b/samples/CSharp/OCCTProxy/OCCTProxy.cpp
index 222ffbdd1f..1888521696 100644
--- a/samples/CSharp/OCCTProxy/OCCTProxy.cpp
+++ b/samples/CSharp/OCCTProxy/OCCTProxy.cpp
@@ -530,7 +530,7 @@ public:
theRed=255;
theGreen=255;
theBlue=255;
- Handle_AIS_InteractiveObject aCurrent ;
+ Handle(AIS_InteractiveObject) aCurrent ;
Quantity_Color anObjCol;
myAISContext()->InitCurrent();
if (!myAISContext()->MoreCurrent())
@@ -716,7 +716,7 @@ public:
///
///Get AISContext
///
- Handle_AIS_InteractiveContext GetContext(void)
+ Handle(AIS_InteractiveContext) GetContext(void)
{
return myAISContext();
}
@@ -841,8 +841,8 @@ public:
return false;
}
- Handle_AIS_InteractiveObject anIO = myAISContext()->Current();
- Handle_AIS_Shape anIS = Handle_AIS_Shape::DownCast(anIO);
+ Handle(AIS_InteractiveObject) anIO = myAISContext()->Current();
+ Handle(AIS_Shape) anIS = Handle(AIS_Shape)::DownCast(anIO);
return BRepTools::Write (anIS->Shape(), (Standard_CString)theFileName) != Standard_False;
}
@@ -857,8 +857,8 @@ public:
STEPControl_Writer aWriter;
for ( myAISContext()->InitCurrent(); myAISContext()->MoreCurrent(); myAISContext()->NextCurrent() )
{
- Handle_AIS_InteractiveObject anIO = myAISContext()->Current();
- Handle_AIS_Shape anIS=Handle_AIS_Shape::DownCast(anIO);
+ Handle(AIS_InteractiveObject) anIO = myAISContext()->Current();
+ Handle(AIS_Shape) anIS=Handle(AIS_Shape)::DownCast(anIO);
TopoDS_Shape aShape = anIS->Shape();
aStatus = aWriter.Transfer( aShape , aType );
if ( aStatus != IFSelect_RetDone )
@@ -888,8 +888,8 @@ public:
for ( myAISContext()->InitCurrent(); myAISContext()->MoreCurrent(); myAISContext()->NextCurrent() )
{
- Handle_AIS_InteractiveObject anIO = myAISContext()->Current();
- Handle_AIS_Shape anIS=Handle_AIS_Shape::DownCast(anIO);
+ Handle(AIS_InteractiveObject) anIO = myAISContext()->Current();
+ Handle(AIS_Shape) anIS=Handle(AIS_Shape)::DownCast(anIO);
TopoDS_Shape aShape = anIS->Shape();
aWriter.AddShape ( aShape );
}
@@ -910,8 +910,8 @@ public:
for ( myAISContext()->InitCurrent(); myAISContext()->MoreCurrent(); myAISContext()->NextCurrent() )
{
- Handle_AIS_InteractiveObject anIO = myAISContext()->Current();
- Handle_AIS_Shape anIS=Handle_AIS_Shape::DownCast(anIO);
+ Handle(AIS_InteractiveObject) anIO = myAISContext()->Current();
+ Handle(AIS_Shape) anIS=Handle(AIS_Shape)::DownCast(anIO);
TopoDS_Shape aShape = anIS->Shape();
if ( aShape.IsNull() )
{
@@ -939,8 +939,8 @@ public:
for ( myAISContext()->InitCurrent(); myAISContext()->MoreCurrent(); myAISContext()->NextCurrent() )
{
- Handle_AIS_InteractiveObject anIO = myAISContext()->Current();
- Handle_AIS_Shape anIS=Handle_AIS_Shape::DownCast(anIO);
+ Handle(AIS_InteractiveObject) anIO = myAISContext()->Current();
+ Handle(AIS_Shape) anIS=Handle(AIS_Shape)::DownCast(anIO);
TopoDS_Shape aShape = anIS->Shape();
if ( aShape.IsNull() )
{
@@ -1030,8 +1030,8 @@ public:
private:
// fields
- NCollection_Haft myViewer;
- NCollection_Haft myView;
- NCollection_Haft myAISContext;
- NCollection_Haft myGraphicDriver;
+ NCollection_Haft myViewer;
+ NCollection_Haft myView;
+ NCollection_Haft myAISContext;
+ NCollection_Haft myGraphicDriver;
};
diff --git a/samples/CSharp/OCCTProxy_D3D/OCCTProxyD3D.cpp b/samples/CSharp/OCCTProxy_D3D/OCCTProxyD3D.cpp
index a1a237a356..f3beaee7be 100644
--- a/samples/CSharp/OCCTProxy_D3D/OCCTProxyD3D.cpp
+++ b/samples/CSharp/OCCTProxy_D3D/OCCTProxyD3D.cpp
@@ -693,7 +693,7 @@ public:
///
///Get AISContext
///
- Handle_AIS_InteractiveContext GetContext()
+ Handle(AIS_InteractiveContext) GetContext()
{
return myAISContext();
}
@@ -965,9 +965,9 @@ public:
private:
- NCollection_Haft myViewer;
- NCollection_Haft myView;
- NCollection_Haft myAISContext;
- NCollection_Haft myGraphicDriver;
+ NCollection_Haft myViewer;
+ NCollection_Haft myView;
+ NCollection_Haft myAISContext;
+ NCollection_Haft myGraphicDriver;
};
diff --git a/samples/java/jniviewer/jni/OcctJni_MsgPrinter.cxx b/samples/java/jniviewer/jni/OcctJni_MsgPrinter.cxx
index 8eef25f58c..da559a4027 100644
--- a/samples/java/jniviewer/jni/OcctJni_MsgPrinter.cxx
+++ b/samples/java/jniviewer/jni/OcctJni_MsgPrinter.cxx
@@ -18,7 +18,6 @@
#include
-IMPLEMENT_STANDARD_HANDLE (OcctJni_MsgPrinter, Message_Printer)
IMPLEMENT_STANDARD_RTTIEXT(OcctJni_MsgPrinter, Message_Printer)
// =======================================================================
diff --git a/samples/java/jniviewer/jni/OcctJni_MsgPrinter.hxx b/samples/java/jniviewer/jni/OcctJni_MsgPrinter.hxx
index 0735033b4d..5f2fa0c733 100644
--- a/samples/java/jniviewer/jni/OcctJni_MsgPrinter.hxx
+++ b/samples/java/jniviewer/jni/OcctJni_MsgPrinter.hxx
@@ -53,7 +53,7 @@ private:
public:
- DEFINE_STANDARD_RTTI(OcctJni_MsgPrinter)
+ DEFINE_STANDARD_RTTIEXT(OcctJni_MsgPrinter,Message_Printer)
};
diff --git a/samples/java/jniviewer/jni/OcctJni_Window.cxx b/samples/java/jniviewer/jni/OcctJni_Window.cxx
index 8f50abde3b..9202411135 100644
--- a/samples/java/jniviewer/jni/OcctJni_Window.cxx
+++ b/samples/java/jniviewer/jni/OcctJni_Window.cxx
@@ -13,5 +13,4 @@
#include
-IMPLEMENT_STANDARD_HANDLE (OcctJni_Window, Aspect_Window)
IMPLEMENT_STANDARD_RTTIEXT(OcctJni_Window, Aspect_Window)
diff --git a/samples/java/jniviewer/jni/OcctJni_Window.hxx b/samples/java/jniviewer/jni/OcctJni_Window.hxx
index d73c4a6629..a8e38c96a1 100644
--- a/samples/java/jniviewer/jni/OcctJni_Window.hxx
+++ b/samples/java/jniviewer/jni/OcctJni_Window.hxx
@@ -97,7 +97,7 @@ private:
public:
- DEFINE_STANDARD_RTTI(OcctJni_Window)
+ DEFINE_STANDARD_RTTIEXT(OcctJni_Window,Aspect_Window)
};
diff --git a/samples/mfc/occtdemo/Approx/Approx_Presentation.cpp b/samples/mfc/occtdemo/Approx/Approx_Presentation.cpp
index 1f8015a2f7..28a81916ff 100755
--- a/samples/mfc/occtdemo/Approx/Approx_Presentation.cpp
+++ b/samples/mfc/occtdemo/Approx/Approx_Presentation.cpp
@@ -153,7 +153,7 @@ static TCollection_AsciiString Comment(Standard_Real Step,
"GeomAPI_PointsToBSplineSurface aPTBS;" EOL
"aPTBS.Init(aZPoints,aX0,aXStep,aY0,aYStep," EOL
" DegMin,DegMax,Continuity,Tolerance);" EOL
- "Handle_Geom_BSplineSurface aSurface = aPTBS.Surface();" EOL EOL EOL
+ "Handle(Geom_BSplineSurface) aSurface = aPTBS.Surface();" EOL EOL EOL
);
return aText;
@@ -165,7 +165,7 @@ static TCollection_AsciiString Comment(Standard_Real Step,
// Purpose :
//================================================================
-Handle_Geom_BSplineSurface Approx_Presentation::CreateBSplineSurface(TColStd_Array2OfReal& aZPoints,
+Handle(Geom_BSplineSurface) Approx_Presentation::CreateBSplineSurface(TColStd_Array2OfReal& aZPoints,
Standard_Real theXStep,
Standard_Real theYStep,
Standard_Integer Count)
@@ -175,7 +175,7 @@ Handle_Geom_BSplineSurface Approx_Presentation::CreateBSplineSurface(TColStd_Arr
GeomAPI_PointsToBSplineSurface aPTBS;
aPTBS.Init(aZPoints,aX0,theXStep,aY0,theYStep,
DegMin[Count],DegMax[Count],Continuity[Count],Tol[Count]);
- Handle_Geom_BSplineSurface aSurface = aPTBS.Surface();
+ Handle(Geom_BSplineSurface) aSurface = aPTBS.Surface();
return aSurface;
}
@@ -192,12 +192,12 @@ Standard_Boolean Approx_Presentation::DrawModifyBSplineSurface(TColStd_Array2OfR
Standard_Integer theIndexX,
Standard_Integer theIndexY,
Standard_Real theDeflection,
- Handle_AIS_InteractiveObject& aMovePnt,
- Handle_AIS_InteractiveObject& aObj,
+ Handle(AIS_InteractiveObject)& aMovePnt,
+ Handle(AIS_InteractiveObject)& aObj,
Standard_Integer Count)
{
- Handle_AIS_InteractiveObject auxObj;
+ Handle(AIS_InteractiveObject) auxObj;
Standard_Real aX0 = -300, aY0 = -200;
Standard_Real aLastZ = aZPoints(theIndexX,theIndexY);
aZPoints(theIndexX,theIndexY) += 100*theDeflection;
@@ -216,7 +216,7 @@ Standard_Boolean Approx_Presentation::DrawModifyBSplineSurface(TColStd_Array2OfR
aZPoints(theIndexX,theIndexY) = aLastZ;
- Handle_Geom_BSplineSurface aSurface = aPTBS.Surface();
+ Handle(Geom_BSplineSurface) aSurface = aPTBS.Surface();
auxObj = drawSurface(aSurface);
getAISContext()->Erase(aObj);
@@ -275,7 +275,7 @@ void Approx_Presentation::sample1()
aText += (
"aPTB.Init(aCurvePoint,DegMin,DegMax,Continuity,Tolerance);" EOL
- "Handle_Geom_BSplineCurve aCurve = aPTB.Curve();" EOL
+ "Handle(Geom_BSplineCurve) aCurve = aPTB.Curve();" EOL
);
setResultTitle("Creating approximations of curves");
@@ -295,7 +295,7 @@ void Approx_Presentation::sample1()
GeomAPI_PointsToBSpline aPTB;
- Handle_AIS_InteractiveObject aIndexPnt [2],aObj;
+ Handle(AIS_InteractiveObject) aIndexPnt [2],aObj;
Standard_Integer aIndex[2] = {9,13};
Standard_Real aDeflection[2] = {-1.5,2};
@@ -313,7 +313,7 @@ void Approx_Presentation::sample1()
if(WAIT_A_LITTLE) return;
aPTB.Init(aCurvePoint,DegMin[Count],DegMax[Count],Continuity[Count],Tol[Count]);
- Handle_Geom_BSplineCurve aCurve = aPTB.Curve();
+ Handle(Geom_BSplineCurve) aCurve = aPTB.Curve();
aObj = drawCurve(aCurve);
for( i = 0 ; i < 2 ; i++)
@@ -367,7 +367,7 @@ void Approx_Presentation::sample2()
TColgp_Array2OfPnt aPnt(1,4,1,4);
- Handle_AIS_InteractiveObject aShowPnt[4][4],aObj,aMovePnt;
+ Handle(AIS_InteractiveObject) aShowPnt[4][4],aObj,aMovePnt;
Standard_Integer aColLength = aZPoints.ColLength();
Standard_Integer aRowLength = aZPoints.RowLength();
@@ -404,7 +404,7 @@ void Approx_Presentation::sample2()
aText = Comment(aXStep,anUpper,DegMin[Count],DegMax[Count],Count+1,Tol[Count]);
setResultText(aText.ToCString());
- Handle_Geom_BSplineSurface aSurface = CreateBSplineSurface(aZPoints,aXStep,aYStep,Count);
+ Handle(Geom_BSplineSurface) aSurface = CreateBSplineSurface(aZPoints,aXStep,aYStep,Count);
aObj = drawSurface(aSurface);
Standard_Boolean aBool;
if(WAIT_A_LITTLE) return ;
@@ -452,7 +452,7 @@ void Approx_Presentation::sample3()
TColgp_Array2OfPnt aPnt(1,4,1,4);
- Handle_AIS_InteractiveObject aShowPnt[4][4],aObj,aMovePnt;
+ Handle(AIS_InteractiveObject) aShowPnt[4][4],aObj,aMovePnt;
Standard_Integer aColLength = aZPoints.ColLength();
Standard_Integer aRowLength = aZPoints.RowLength();
@@ -491,7 +491,7 @@ void Approx_Presentation::sample3()
aText += Comment(aXStep,anUpper,DegMin[Count],DegMax[Count],Count+1,Tol[Count]);
setResultText(aText.ToCString());
- Handle_Geom_BSplineSurface aSurface = CreateBSplineSurface(aZPoints,aXStep,aYStep,Count);
+ Handle(Geom_BSplineSurface) aSurface = CreateBSplineSurface(aZPoints,aXStep,aYStep,Count);
aObj = drawSurface(aSurface);
Standard_Boolean aBool;
if(WAIT_A_LITTLE) return ;
@@ -540,7 +540,7 @@ void Approx_Presentation::sample4()
TColgp_Array2OfPnt aPnt(1,5,1,5);
- Handle_AIS_InteractiveObject aShowPnt[5][5],aObj,aMovePnt;
+ Handle(AIS_InteractiveObject) aShowPnt[5][5],aObj,aMovePnt;
Standard_Integer aColLength = aZPoints.ColLength();
Standard_Integer aRowLength = aZPoints.RowLength();
@@ -579,7 +579,7 @@ void Approx_Presentation::sample4()
aText += Comment(aXStep,anUpper,DegMin[Count],DegMax[Count],Count+1,Tol[Count]);
setResultText(aText.ToCString());
- Handle_Geom_BSplineSurface aSurface = CreateBSplineSurface(aZPoints,aXStep,aYStep,Count);
+ Handle(Geom_BSplineSurface) aSurface = CreateBSplineSurface(aZPoints,aXStep,aYStep,Count);
aObj = drawSurface(aSurface);
Standard_Boolean aBool;
if(WAIT_A_LITTLE) return ;
diff --git a/samples/mfc/occtdemo/Approx/Approx_Presentation.h b/samples/mfc/occtdemo/Approx/Approx_Presentation.h
index db3f736cba..34eb3a6a02 100755
--- a/samples/mfc/occtdemo/Approx/Approx_Presentation.h
+++ b/samples/mfc/occtdemo/Approx/Approx_Presentation.h
@@ -32,11 +32,11 @@ private:
Standard_Boolean DrawModifyBSplineSurface(TColStd_Array2OfReal& ,
Standard_Real ,Standard_Real ,
Standard_Integer ,Standard_Integer ,
- Standard_Real,Handle_AIS_InteractiveObject&,
- Handle_AIS_InteractiveObject&,
+ Standard_Real,Handle(AIS_InteractiveObject)&,
+ Handle(AIS_InteractiveObject)&,
Standard_Integer);
- Handle_Geom_BSplineSurface CreateBSplineSurface(TColStd_Array2OfReal& ,
+ Handle(Geom_BSplineSurface) CreateBSplineSurface(TColStd_Array2OfReal& ,
Standard_Real ,Standard_Real,
Standard_Integer);
diff --git a/samples/mfc/occtdemo/Chamfers/Chamfers_Presentation.cpp b/samples/mfc/occtdemo/Chamfers/Chamfers_Presentation.cpp
index 4b6dd08da1..5a4ac7ce79 100755
--- a/samples/mfc/occtdemo/Chamfers/Chamfers_Presentation.cpp
+++ b/samples/mfc/occtdemo/Chamfers/Chamfers_Presentation.cpp
@@ -84,7 +84,7 @@ Standard_Boolean Chamfers_Presentation::createDiverseChamferOnBox(
Standard_Real d1, // chamfer on edge 1
Standard_Real d2, // chamfer on edge 2
Standard_Real d3, // chamfer on edge 3
- Handle_AIS_InteractiveObject& thePrevShape)// for smoth drawing
+ Handle(AIS_InteractiveObject)& thePrevShape)// for smoth drawing
// we display the new shape first, then erase the previous one
{
// initializing a class that builds chamfer
@@ -202,7 +202,7 @@ Standard_Boolean Chamfers_Presentation::createChamferOnBox(
TopoDS_Solid& aBox,
Standard_Real theDistA, // distance along first face
Standard_Real theDistB, // distance along second face
- Handle_AIS_InteractiveObject& thePrevShape)// for smoth drawing
+ Handle(AIS_InteractiveObject)& thePrevShape)// for smoth drawing
// we display the new shape first, then erase the previous one
{
// initializing a class that builds chamfer
@@ -287,7 +287,7 @@ Standard_Boolean Chamfers_Presentation::createFilletOnBox(
TopoDS_Solid& aBox,
Standard_Real theRad, // radius of fillet
ChFi3d_FilletShape theFShape, // shape of fillet
- Handle_AIS_InteractiveObject& thePrevObj) // to erase
+ Handle(AIS_InteractiveObject)& thePrevObj) // to erase
// the previous shape
{
// initializing a class that builds fillet
@@ -612,7 +612,7 @@ void Chamfers_Presentation::sampleBoxFillet()
Standard_Real a = BOX_SIDE_LEN;
TopoDS_Solid aBox = BRepPrimAPI_MakeBox(gp_Pnt(-a/2, -a/2, -a/2), a, a, a);
- Handle_AIS_InteractiveObject aPrevObj = new AIS_Shape(aBox);
+ Handle(AIS_InteractiveObject) aPrevObj = new AIS_Shape(aBox);
getAISContext()->Display(aPrevObj, Standard_False);
COCCDemoDoc::Fit();
diff --git a/samples/mfc/occtdemo/Chamfers/Chamfers_Presentation.h b/samples/mfc/occtdemo/Chamfers/Chamfers_Presentation.h
index 156dc45b6e..bfcc8fe026 100755
--- a/samples/mfc/occtdemo/Chamfers/Chamfers_Presentation.h
+++ b/samples/mfc/occtdemo/Chamfers/Chamfers_Presentation.h
@@ -12,7 +12,7 @@
#include
#include
-class Handle_AIS_InteractiveObject;
+class AIS_InteractiveObject;
class TopoDS_Solid;
class Chamfers_Presentation : public OCCDemo_Presentation
@@ -29,15 +29,15 @@ public:
private:
Standard_Boolean createChamferOnBox(
TopoDS_Solid&, Standard_Real, Standard_Real,
- Handle_AIS_InteractiveObject&);
+ Handle(AIS_InteractiveObject)&);
Standard_Boolean createDiverseChamferOnBox(
TopoDS_Solid&, Standard_Real, Standard_Real,
- Standard_Real, Handle_AIS_InteractiveObject&);
+ Standard_Real, Handle(AIS_InteractiveObject)&);
Standard_Boolean createFilletOnBox(
TopoDS_Solid&, Standard_Real, ChFi3d_FilletShape,
- Handle_AIS_InteractiveObject&);
+ Handle(AIS_InteractiveObject)&);
// Sample functions
void sampleBoxChamfer();
diff --git a/samples/mfc/occtdemo/Common/ISession/ISession_Curve.cpp b/samples/mfc/occtdemo/Common/ISession/ISession_Curve.cpp
index 814474a9b5..52e9ea23dd 100755
--- a/samples/mfc/occtdemo/Common/ISession/ISession_Curve.cpp
+++ b/samples/mfc/occtdemo/Common/ISession/ISession_Curve.cpp
@@ -11,28 +11,25 @@
#include
-IMPLEMENT_STANDARD_HANDLE(ISession_Curve,AIS_InteractiveObject)
-IMPLEMENT_STANDARD_RTTI(ISession_Curve,AIS_InteractiveObject)
//
// Foreach ancestors, we add a IMPLEMENT_STANDARD_SUPERTYPE and
// a IMPLEMENT_STANDARD_SUPERTYPE_ARRAY_ENTRY macro.
// We must respect the order: from the direct ancestor class
// to the base class.
//
-IMPLEMENT_STANDARD_TYPE(ISession_Curve)
- IMPLEMENT_STANDARD_SUPERTYPE(AIS_InteractiveObject)
- IMPLEMENT_STANDARD_SUPERTYPE(SelectMgr_SelectableObject)
- IMPLEMENT_STANDARD_SUPERTYPE(PrsMgr_PresentableObject)
- IMPLEMENT_STANDARD_SUPERTYPE(MMgt_TShared)
- IMPLEMENT_STANDARD_SUPERTYPE(Standard_Transient)
- IMPLEMENT_STANDARD_SUPERTYPE_ARRAY()
- IMPLEMENT_STANDARD_SUPERTYPE_ARRAY_ENTRY(AIS_InteractiveObject)
- IMPLEMENT_STANDARD_SUPERTYPE_ARRAY_ENTRY(SelectMgr_SelectableObject)
- IMPLEMENT_STANDARD_SUPERTYPE_ARRAY_ENTRY(PrsMgr_PresentableObject)
- IMPLEMENT_STANDARD_SUPERTYPE_ARRAY_ENTRY(MMgt_TShared)
- IMPLEMENT_STANDARD_SUPERTYPE_ARRAY_ENTRY(Standard_Transient)
- IMPLEMENT_STANDARD_SUPERTYPE_ARRAY_END()
-IMPLEMENT_STANDARD_TYPE_END(ISession_Curve)
+
+
+
+
+
+
+
+
+
+
+
+
+
#ifdef _DEBUG
#undef THIS_FILE
diff --git a/samples/mfc/occtdemo/Common/ISession/ISession_Curve.h b/samples/mfc/occtdemo/Common/ISession/ISession_Curve.h
index 940b9adc7f..4198ffd96a 100755
--- a/samples/mfc/occtdemo/Common/ISession/ISession_Curve.h
+++ b/samples/mfc/occtdemo/Common/ISession/ISession_Curve.h
@@ -20,7 +20,7 @@ class ISession_Curve : public AIS_InteractiveObject
public:
ISession_Curve(const Handle(Geom_Curve)& aCurve);
virtual ~ISession_Curve();
-DEFINE_STANDARD_RTTI(ISession_Curve)
+DEFINE_STANDARD_RTTIEXT(ISession_Curve,AIS_InteractiveObject)
private:
Standard_EXPORT virtual void Compute(const Handle(PrsMgr_PresentationManager3d)& aPresentationManager,const Handle(Prs3d_Presentation)& aPresentation,const Standard_Integer aMode = 0) ;
diff --git a/samples/mfc/occtdemo/Common/OCCDemo_Presentation.cpp b/samples/mfc/occtdemo/Common/OCCDemo_Presentation.cpp
index 091c20c413..2e9da863f5 100755
--- a/samples/mfc/occtdemo/Common/OCCDemo_Presentation.cpp
+++ b/samples/mfc/occtdemo/Common/OCCDemo_Presentation.cpp
@@ -77,8 +77,8 @@ static Standard_Boolean fixParam(Standard_Real& theParam)
// Purpose : displays a given geometric surface in 3d viewer
// (creates a finite face and displays it)
//================================================================
-Handle_AIS_InteractiveObject OCCDemo_Presentation::drawSurface
- (const Handle_Geom_Surface& theSurface,
+Handle(AIS_InteractiveObject) OCCDemo_Presentation::drawSurface
+ (const Handle(Geom_Surface)& theSurface,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay)
{
@@ -89,7 +89,7 @@ Handle_AIS_InteractiveObject OCCDemo_Presentation::drawSurface
fixParam(v1);
fixParam(v2);
- Handle_AIS_Shape aGraphicSurface =
+ Handle(AIS_Shape) aGraphicSurface =
new AIS_Shape(BRepBuilderAPI_MakeFace (theSurface, u1, u2, v1, v2));
getAISContext()->SetMaterial(aGraphicSurface, Graphic3d_NOM_PLASTIC, toDisplay);
@@ -110,8 +110,8 @@ Handle_AIS_InteractiveObject OCCDemo_Presentation::drawSurface
// Function : DrawCurve
// Purpose : displays a given curve 3d
//================================================================
-Handle_AIS_InteractiveObject OCCDemo_Presentation::drawCurve
- (const Handle_Geom_Curve& theCurve,
+Handle(AIS_InteractiveObject) OCCDemo_Presentation::drawCurve
+ (const Handle(Geom_Curve)& theCurve,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay)
{
@@ -135,8 +135,8 @@ Handle_AIS_InteractiveObject OCCDemo_Presentation::drawCurve
// Function : DrawCurve
// Purpose : displays a given curve 2d
//================================================================
-Handle_AIS_InteractiveObject OCCDemo_Presentation::drawCurve
- (const Handle_Geom2d_Curve& theCurve,
+Handle(AIS_InteractiveObject) OCCDemo_Presentation::drawCurve
+ (const Handle(Geom2d_Curve)& theCurve,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay,
const gp_Ax2& aPosition)
@@ -163,7 +163,7 @@ Handle_AIS_InteractiveObject OCCDemo_Presentation::drawCurve
// Function : drawPoint
// Purpose : displays a given point
//================================================================
-Handle_AIS_Point OCCDemo_Presentation::drawPoint
+Handle(AIS_Point) OCCDemo_Presentation::drawPoint
(const gp_Pnt& aPnt,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay)
@@ -185,7 +185,7 @@ Handle_AIS_Point OCCDemo_Presentation::drawPoint
// (segment of line starting at thePnt with the arrow at the end,
// the length of segment is the length of the vector)
//================================================================
-Handle_AIS_InteractiveObject OCCDemo_Presentation::drawVector
+Handle(AIS_InteractiveObject) OCCDemo_Presentation::drawVector
(const gp_Pnt& thePnt,
const gp_Vec& theVec,
const Quantity_Color& theColor,
@@ -217,11 +217,11 @@ Handle_AIS_InteractiveObject OCCDemo_Presentation::drawVector
}
-Handle_AIS_Shape OCCDemo_Presentation::drawShape
+Handle(AIS_Shape) OCCDemo_Presentation::drawShape
(const TopoDS_Shape& theShape,const Quantity_Color& theColor,
const Standard_Boolean toDisplay)
{
- Handle_AIS_Shape aGraphicShape = new AIS_Shape(theShape);
+ Handle(AIS_Shape) aGraphicShape = new AIS_Shape(theShape);
getAISContext()->SetMaterial(aGraphicShape, Graphic3d_NOM_PLASTIC, toDisplay);
getAISContext()->SetColor (aGraphicShape, theColor, toDisplay);
@@ -237,12 +237,12 @@ Handle_AIS_Shape OCCDemo_Presentation::drawShape
return aGraphicShape;
}
-Handle_AIS_Shape OCCDemo_Presentation::drawShape
+Handle(AIS_Shape) OCCDemo_Presentation::drawShape
(const TopoDS_Shape& theShape,
const Graphic3d_NameOfMaterial theMaterial,
const Standard_Boolean toDisplay)
{
- Handle_AIS_Shape aGraphicShape = new AIS_Shape(theShape);
+ Handle(AIS_Shape) aGraphicShape = new AIS_Shape(theShape);
getAISContext()->SetMaterial(aGraphicShape, theMaterial, toDisplay);
if (toDisplay) {
diff --git a/samples/mfc/occtdemo/Common/OCCDemo_Presentation.h b/samples/mfc/occtdemo/Common/OCCDemo_Presentation.h
index 959846e83f..1ac3299835 100755
--- a/samples/mfc/occtdemo/Common/OCCDemo_Presentation.h
+++ b/samples/mfc/occtdemo/Common/OCCDemo_Presentation.h
@@ -14,10 +14,10 @@
#define WAIT_A_SECOND WaitForInput(1000)
#include
-class Handle_AIS_InteractiveObject;
-class Handle_Geom_Surface;
-class Handle_Geom_Curve;
-class Handle_Geom2d_Curve;
+class AIS_InteractiveObject;
+class Geom_Surface;
+class Geom_Curve;
+class Geom2d_Curve;
class Quantity_Color;
class OCCDemo_Presentation
@@ -63,8 +63,8 @@ public:
protected:
// Methods to call from a derivable class
void setName (const char* theName) {myName = CString(theName);}
- Handle_AIS_InteractiveContext getAISContext() const {return myDoc->GetAISContext();}
- Handle_V3d_Viewer getViewer() const {return myDoc->GetViewer();}
+ Handle(AIS_InteractiveContext) getAISContext() const {return myDoc->GetAISContext();}
+ Handle(V3d_Viewer) getViewer() const {return myDoc->GetViewer();}
void setResultTitle (const char* theTitle) {myDoc->GetResultDialog()->SetTitle(theTitle);}
void setResultText (const char* theText) {myDoc->GetResultDialog()->SetText(theText);}
Standard_CString GetDataDir() {return myDoc->GetDataDir();}
@@ -72,45 +72,45 @@ protected:
Standard_Boolean WaitForInput (unsigned long aMilliSeconds);
// Waits for a user input or a period of time has been elapsed
- Handle_AIS_InteractiveObject drawSurface (const Handle_Geom_Surface& theSurface,
+ Handle(AIS_InteractiveObject) drawSurface (const Handle(Geom_Surface)& theSurface,
const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_LEMONCHIFFON3),
const Standard_Boolean toDisplay = Standard_True);
// creates a finite face based on the given geometric surface
// and displays it in the viewer if toDisplay = Standard_True
- Handle_AIS_InteractiveObject drawCurve (const Handle_Geom_Curve& theCurve,
+ Handle(AIS_InteractiveObject) drawCurve (const Handle(Geom_Curve)& theCurve,
const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_RED),
const Standard_Boolean toDisplay = Standard_True);
// creates an ISession_Curve based on the given geometric curve
// and displays it in the viewer if toDisplay = Standard_True
- Handle_AIS_InteractiveObject drawCurve (const Handle_Geom2d_Curve& theCurve,
+ Handle(AIS_InteractiveObject) drawCurve (const Handle(Geom2d_Curve)& theCurve,
const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_RED),
const Standard_Boolean toDisplay = Standard_True,
const gp_Ax2& aPosition = gp::XOY());
// converts a given curve to 3d using aPosition and calls the previous method
- Handle_AIS_Point drawPoint (const gp_Pnt& thePnt,
+ Handle(AIS_Point) drawPoint (const gp_Pnt& thePnt,
const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_GREEN),
const Standard_Boolean toDisplay = Standard_True);
// creates a presentation of the given point
// and displays it in the viewer if toDisplay = Standard_True
- Handle_AIS_InteractiveObject drawVector (const gp_Pnt& thePnt,
+ Handle(AIS_InteractiveObject) drawVector (const gp_Pnt& thePnt,
const gp_Vec& theVec,
const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_YELLOW),
const Standard_Boolean toDisplay = Standard_True);
// creates a presentation of the given vector
// and displays it in the viewer if toDisplay = Standard_True
- Handle_AIS_Shape drawShape (const TopoDS_Shape& theShape,
+ Handle(AIS_Shape) drawShape (const TopoDS_Shape& theShape,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay = Standard_True);
// creates a presentation of the given shape
// with material PLASTIC and a given color
// and displays it in the viewer if toDisplay = Standard_True
- Handle_AIS_Shape drawShape (const TopoDS_Shape& theShape,
+ Handle(AIS_Shape) drawShape (const TopoDS_Shape& theShape,
const Graphic3d_NameOfMaterial theMaterial = Graphic3d_NOM_BRASS,
const Standard_Boolean toDisplay = Standard_True);
// creates a presentation of the given shape with the given material
diff --git a/samples/mfc/occtdemo/Common/WNT/OCCDemo.h b/samples/mfc/occtdemo/Common/WNT/OCCDemo.h
index f8fb58d63e..5d13f1dde1 100755
--- a/samples/mfc/occtdemo/Common/WNT/OCCDemo.h
+++ b/samples/mfc/occtdemo/Common/WNT/OCCDemo.h
@@ -23,7 +23,7 @@ class COCCDemoApp : public CWinApp
{
public:
COCCDemoApp();
- Handle_Graphic3d_WNTGraphicDevice GetGraphicDevice() const
+ Handle(Graphic3d_WNTGraphicDevice) GetGraphicDevice() const
{ return myGraphicDevice; } ;
// Overrides
@@ -42,7 +42,7 @@ public:
DECLARE_MESSAGE_MAP()
private:
- Handle_Graphic3d_WNTGraphicDevice myGraphicDevice;
+ Handle(Graphic3d_WNTGraphicDevice) myGraphicDevice;
};
diff --git a/samples/mfc/occtdemo/Common/WNT/OCCDemoDoc.h b/samples/mfc/occtdemo/Common/WNT/OCCDemoDoc.h
index 612d5e01eb..bb184c70a9 100755
--- a/samples/mfc/occtdemo/Common/WNT/OCCDemoDoc.h
+++ b/samples/mfc/occtdemo/Common/WNT/OCCDemoDoc.h
@@ -15,8 +15,8 @@ class OCCDemo_Presentation;
class COCCDemoDoc : public CDocument
{
public:
- Handle_V3d_Viewer GetViewer() const { return myViewer; };
- Handle_AIS_InteractiveContext GetAISContext() const { return myAISContext; };
+ Handle(V3d_Viewer) GetViewer() const { return myViewer; };
+ Handle(AIS_InteractiveContext) GetAISContext() const { return myAISContext; };
CResultDialog* GetResultDialog () {return &myCResultDialog;}
Standard_CString GetDataDir() {return myDataDir;}
@@ -71,8 +71,8 @@ protected:
DECLARE_MESSAGE_MAP()
private:
- Handle_V3d_Viewer myViewer;
- Handle_AIS_InteractiveContext myAISContext;
+ Handle(V3d_Viewer) myViewer;
+ Handle(AIS_InteractiveContext) myAISContext;
OCCDemo_Presentation *myPresentation;
CResultDialog myCResultDialog;
BOOL myShowResult;
diff --git a/samples/mfc/occtdemo/Common/WNT/OCCDemoView.h b/samples/mfc/occtdemo/Common/WNT/OCCDemoView.h
index c77c2b317e..cf8ea1bfb6 100755
--- a/samples/mfc/occtdemo/Common/WNT/OCCDemoView.h
+++ b/samples/mfc/occtdemo/Common/WNT/OCCDemoView.h
@@ -103,8 +103,8 @@ private:
private:
enum VisMode { VIS_WIREFRAME, VIS_SHADE, VIS_HLR };
- Handle_V3d_View myView;
- Handle_Graphic3d_GraphicDriver myGraphicDriver;
+ Handle(V3d_View) myView;
+ Handle(Graphic3d_GraphicDriver) myGraphicDriver;
View3D_CurrentAction myCurrentMode;
VisMode myVisMode;
Standard_Integer myXmin;
diff --git a/samples/mfc/occtdemo/Convert/Convert_Presentation.cpp b/samples/mfc/occtdemo/Convert/Convert_Presentation.cpp
index 7571488895..5d65553496 100755
--- a/samples/mfc/occtdemo/Convert/Convert_Presentation.cpp
+++ b/samples/mfc/occtdemo/Convert/Convert_Presentation.cpp
@@ -88,7 +88,7 @@ void Convert_Presentation::DoSample()
// Function : Convert_Presentation::drawSurfaceAndItsBSpline
// Purpose :
//================================================================
-void Convert_Presentation::drawSurfaceAndItsBSpline(Handle_Geom_Surface theSurface,
+void Convert_Presentation::drawSurfaceAndItsBSpline(Handle(Geom_Surface) theSurface,
const Standard_CString theName,
TCollection_AsciiString& theText)
{
@@ -97,7 +97,7 @@ void Convert_Presentation::drawSurfaceAndItsBSpline(Handle_Geom_Surface theSurfa
aTitle += " to BSpline surface";
theText += EOL
- " Handle_Geom_BSplineSurface aBSplineSurface = " EOL
+ " Handle(Geom_BSplineSurface) aBSplineSurface = " EOL
" GeomConvert::SurfaceToBSplineSurface(aSurface);" EOL;
setResultTitle (aTitle.ToCString());
@@ -107,7 +107,7 @@ void Convert_Presentation::drawSurfaceAndItsBSpline(Handle_Geom_Surface theSurfa
if (WAIT_A_LITTLE) return;
- Handle_Geom_BSplineSurface aBSplineSurface = GeomConvert::SurfaceToBSplineSurface(theSurface);
+ Handle(Geom_BSplineSurface) aBSplineSurface = GeomConvert::SurfaceToBSplineSurface(theSurface);
_ASSERTE(!aBSplineSurface.IsNull());
@@ -118,7 +118,7 @@ void Convert_Presentation::drawSurfaceAndItsBSpline(Handle_Geom_Surface theSurfa
// Function : Convert_Presentation::drawCurveAndItsBSpline
// Purpose :
//================================================================
-void Convert_Presentation::drawCurveAndItsBSpline(Handle_Geom_Curve theCurve,
+void Convert_Presentation::drawCurveAndItsBSpline(Handle(Geom_Curve) theCurve,
const Standard_CString theName,
TCollection_AsciiString& theText)
{
@@ -127,7 +127,7 @@ void Convert_Presentation::drawCurveAndItsBSpline(Handle_Geom_Curve theCurve,
aTitle += " to BSpline curve";
theText += EOL
- " Handle_Geom_BSplineCurve aBSpline = " EOL
+ " Handle(Geom_BSplineCurve) aBSpline = " EOL
" GeomConvert::CurveToBSplineCurve(aCurve);" EOL;
setResultTitle (aTitle.ToCString());
@@ -137,7 +137,7 @@ void Convert_Presentation::drawCurveAndItsBSpline(Handle_Geom_Curve theCurve,
if (WAIT_A_LITTLE) return;
- Handle_Geom_BSplineCurve aBSpline = GeomConvert::CurveToBSplineCurve(theCurve);
+ Handle(Geom_BSplineCurve) aBSpline = GeomConvert::CurveToBSplineCurve(theCurve);
drawCurve (aBSpline, BSplineColor);
}
@@ -157,7 +157,7 @@ void Convert_Presentation::sampleCircle()
gp_Dir aDir (1,0,0);
gp_Ax2 aAxis (aOrigin, aDir);
Standard_Real aRadius = 300;
- Handle_Geom_Circle aCurve = new Geom_Circle (aAxis, aRadius);
+ Handle(Geom_Circle) aCurve = new Geom_Circle (aAxis, aRadius);
TCollection_AsciiString aText (
" gp_Pnt aOrigin (0,0,0);" EOL
diff --git a/samples/mfc/occtdemo/Convert/Convert_Presentation.h b/samples/mfc/occtdemo/Convert/Convert_Presentation.h
index 3715ae336f..ffb991b987 100755
--- a/samples/mfc/occtdemo/Convert/Convert_Presentation.h
+++ b/samples/mfc/occtdemo/Convert/Convert_Presentation.h
@@ -10,8 +10,8 @@
#endif // _MSC_VER > 1000
#include
-class Handle_Geom_Curve;
-class Handle_Geom_Surface;
+class Geom_Curve;
+class Geom_Surface;
class Quantity_Color;
@@ -38,10 +38,10 @@ private:
void sampleConicalSurface();
void sampleSphericalSurface();
- void drawCurveAndItsBSpline (Handle_Geom_Curve theCurve,
+ void drawCurveAndItsBSpline (Handle(Geom_Curve) theCurve,
const Standard_CString theName, TCollection_AsciiString& theText);
- void drawSurfaceAndItsBSpline (Handle_Geom_Surface theSurface,
+ void drawSurfaceAndItsBSpline (Handle(Geom_Surface) theSurface,
const Standard_CString theName, TCollection_AsciiString& theText);
private:
diff --git a/samples/mfc/occtdemo/DCA/DCA_Presentation.cpp b/samples/mfc/occtdemo/DCA/DCA_Presentation.cpp
index bc225eeedd..aee15feb67 100755
--- a/samples/mfc/occtdemo/DCA/DCA_Presentation.cpp
+++ b/samples/mfc/occtdemo/DCA/DCA_Presentation.cpp
@@ -196,14 +196,14 @@ void DCA_Presentation::sampleParabola()
if(WAIT_A_LITTLE) return;
- Handle_Geom_Line aFocalLenLin = new Geom_Line(gce_MakeLin(aPointParab, gp_Dir(0,0,1)));
- Handle_Geom_TrimmedCurve aTrim = new Geom_TrimmedCurve(aFocalLenLin, -aFocalLength/2, aFocalLength/2);
+ Handle(Geom_Line) aFocalLenLin = new Geom_Line(gce_MakeLin(aPointParab, gp_Dir(0,0,1)));
+ Handle(Geom_TrimmedCurve) aTrim = new Geom_TrimmedCurve(aFocalLenLin, -aFocalLength/2, aFocalLength/2);
drawCurve(aTrim);
if(WAIT_A_LITTLE) return;
- Handle_Geom_Parabola aParabola = new Geom_Parabola(aParab);
- Handle_Geom_TrimmedCurve aParabTrimmed =
+ Handle(Geom_Parabola) aParabola = new Geom_Parabola(aParab);
+ Handle(Geom_TrimmedCurve) aParabTrimmed =
new Geom_TrimmedCurve(aParabola,-300,300,Standard_True);
drawCurve(aParabTrimmed);
@@ -218,8 +218,8 @@ void DCA_Presentation::sampleParabola()
if(WAIT_A_LITTLE) return;
- Handle_Geom_Parabola aParabola1 = new Geom_Parabola(aParab1);
- Handle_Geom_TrimmedCurve aParabTrimmed1 = new Geom_TrimmedCurve(aParabola1,-300,300,Standard_True);
+ Handle(Geom_Parabola) aParabola1 = new Geom_Parabola(aParab1);
+ Handle(Geom_TrimmedCurve) aParabTrimmed1 = new Geom_TrimmedCurve(aParabola1,-300,300,Standard_True);
drawCurve(aParabTrimmed1);
}
//================================================================
@@ -283,8 +283,8 @@ void DCA_Presentation::sampleHyperbola()
if(WAIT_A_LITTLE) return;
- Handle_Geom_Hyperbola aHyperbola1 = new Geom_Hyperbola(aHypr1);
- Handle_Geom_TrimmedCurve aHyprTrimmed =
+ Handle(Geom_Hyperbola) aHyperbola1 = new Geom_Hyperbola(aHypr1);
+ Handle(Geom_TrimmedCurve) aHyprTrimmed =
new Geom_TrimmedCurve(aHyperbola1,-3,4,Standard_True);
drawCurve(aHyprTrimmed);
@@ -305,23 +305,23 @@ void DCA_Presentation::sampleHyperbola()
if(WAIT_A_LITTLE) return;
//output of display MajorRadius (yellow color)
- Handle_Geom_Line aLine = new Geom_Line(gce_MakeLin(aPointHypr1,aPointHypr2));
- Handle_Geom_TrimmedCurve aTrimmed1 =
+ Handle(Geom_Line) aLine = new Geom_Line(gce_MakeLin(aPointHypr1,aPointHypr2));
+ Handle(Geom_TrimmedCurve) aTrimmed1 =
new Geom_TrimmedCurve(aLine, 0, aPointHypr1.Distance(aPointHypr2));
drawCurve(aTrimmed1,Quantity_Color(Quantity_NOC_YELLOW));
if(WAIT_A_LITTLE) return;
//output of display MinorRadius (yellow color)
- Handle_Geom_Line aLine1 = new Geom_Line(gce_MakeLin(aPointHypr3, gp_Dir(0,-1,0)));
- Handle_Geom_TrimmedCurve aTrimmed2 = new Geom_TrimmedCurve(aLine1, 0,100);
+ Handle(Geom_Line) aLine1 = new Geom_Line(gce_MakeLin(aPointHypr3, gp_Dir(0,-1,0)));
+ Handle(Geom_TrimmedCurve) aTrimmed2 = new Geom_TrimmedCurve(aLine1, 0,100);
drawCurve(aTrimmed2,Quantity_Color(Quantity_NOC_YELLOW));
if(WAIT_A_LITTLE) return;
//output hyperbola
- Handle_Geom_Hyperbola aHyperbola2 = new Geom_Hyperbola(aHypr2);
- Handle_Geom_TrimmedCurve aHyprTrimmed1 =
+ Handle(Geom_Hyperbola) aHyperbola2 = new Geom_Hyperbola(aHypr2);
+ Handle(Geom_TrimmedCurve) aHyprTrimmed1 =
new Geom_TrimmedCurve(aHyperbola2,-2,2,Standard_True);
drawCurve(aHyprTrimmed1);
}
@@ -396,8 +396,8 @@ void DCA_Presentation::sampleCircle()
if(WAIT_A_LITTLE) return;
//output radius
- Handle_Geom_Line aLine = new Geom_Line(gce_MakeLin (aCenterPoint,gp_Dir(0,0,1)));
- Handle_Geom_TrimmedCurve aTrimmed = new Geom_TrimmedCurve(aLine,0,300);
+ Handle(Geom_Line) aLine = new Geom_Line(gce_MakeLin (aCenterPoint,gp_Dir(0,0,1)));
+ Handle(Geom_TrimmedCurve) aTrimmed = new Geom_TrimmedCurve(aLine,0,300);
drawCurve(aTrimmed,Quantity_Color(Quantity_NOC_WHITE));
if(WAIT_A_LITTLE) return;
@@ -519,16 +519,16 @@ void DCA_Presentation::sampleEllipse()
gp_Lin aLine1 = aMakeLin1.Value();
//output MajorRadius
- Handle_Geom_Line aLineMajorRadius = new Geom_Line(aLine);
- Handle_Geom_TrimmedCurve aTrimmed =
+ Handle(Geom_Line) aLineMajorRadius = new Geom_Line(aLine);
+ Handle(Geom_TrimmedCurve) aTrimmed =
new Geom_TrimmedCurve(aLineMajorRadius,0,120);
drawCurve(aTrimmed,Quantity_Color(Quantity_NOC_WHITE));
if(WAIT_A_LITTLE) return;
//output MinorRadius
- Handle_Geom_Line aLineMinorrRadius = new Geom_Line(aLine1);
- Handle_Geom_TrimmedCurve aTrimmed1 =
+ Handle(Geom_Line) aLineMinorrRadius = new Geom_Line(aLine1);
+ Handle(Geom_TrimmedCurve) aTrimmed1 =
new Geom_TrimmedCurve(aLineMinorrRadius,0,300);
drawCurve(aTrimmed1,Quantity_Color(Quantity_NOC_WHITE));
@@ -588,8 +588,8 @@ void DCA_Presentation::samplePlane()
if(WAIT_A_LITTLE) return;
- Handle_Geom_Plane aPln = new Geom_Plane(aPlane);
- Handle_Geom_RectangularTrimmedSurface aPlnTrimmed =
+ Handle(Geom_Plane) aPln = new Geom_Plane(aPlane);
+ Handle(Geom_RectangularTrimmedSurface) aPlnTrimmed =
new Geom_RectangularTrimmedSurface(aPln,-300,300,-300,300,Standard_True,Standard_True);
drawSurface(aPlnTrimmed);
@@ -604,8 +604,8 @@ void DCA_Presentation::samplePlane()
if(WAIT_A_LITTLE) return;
- Handle_Geom_Plane aPln1 = new Geom_Plane(aPlane1);
- Handle_Geom_RectangularTrimmedSurface aPlnTrimmed1 =
+ Handle(Geom_Plane) aPln1 = new Geom_Plane(aPlane1);
+ Handle(Geom_RectangularTrimmedSurface) aPlnTrimmed1 =
new Geom_RectangularTrimmedSurface(aPln1,-200,300,-200,300,Standard_True,Standard_True);
drawSurface(aPlnTrimmed1);
@@ -693,14 +693,14 @@ void DCA_Presentation::sampleCylindricalSurface()
gp_Dir aDir1(0,0,1);
gce_MakeLin aMakeLin(aCenterPoint,aDir1);
gp_Lin aLin = aMakeLin.Value();
- Handle_Geom_Line aLine = new Geom_Line(aLin);
- Handle_Geom_TrimmedCurve aTrimmed = new Geom_TrimmedCurve(aLine,-100,0);
+ Handle(Geom_Line) aLine = new Geom_Line(aLin);
+ Handle(Geom_TrimmedCurve) aTrimmed = new Geom_TrimmedCurve(aLine,-100,0);
drawCurve(aTrimmed,Quantity_Color(Quantity_NOC_WHITE));
if(WAIT_A_LITTLE) return;
// output cylinder
- Handle_Geom_CylindricalSurface aCylSurface =
+ Handle(Geom_CylindricalSurface) aCylSurface =
new Geom_CylindricalSurface(aCyl);
- Handle_Geom_RectangularTrimmedSurface aCylTrimmed =
+ Handle(Geom_RectangularTrimmedSurface) aCylTrimmed =
new Geom_RectangularTrimmedSurface(aCylSurface,0,2*PI,-200,300,Standard_True,Standard_True);
drawSurface(aCylTrimmed);
if(WAIT_A_LITTLE) return;
@@ -716,14 +716,14 @@ void DCA_Presentation::sampleCylindricalSurface()
drawVector(aCylinderPoint2,gp_Vec(aCylinderPoint2,aCylinderPoint3)*3,Quantity_Color(Quantity_NOC_WHITE));
if(WAIT_A_LITTLE) return;
//output radius
- Handle_Geom_Line aLine1 = new Geom_Line(gce_MakeLin(aCylinderPoint1,aDir1));
- Handle_Geom_TrimmedCurve aTrimmed1 = new Geom_TrimmedCurve(aLine1,-80,0);
+ Handle(Geom_Line) aLine1 = new Geom_Line(gce_MakeLin(aCylinderPoint1,aDir1));
+ Handle(Geom_TrimmedCurve) aTrimmed1 = new Geom_TrimmedCurve(aLine1,-80,0);
drawCurve(aTrimmed1,Quantity_Color(Quantity_NOC_WHITE));
if(WAIT_A_LITTLE) return;
//output cylinder
- Handle_Geom_CylindricalSurface aCylSurface1 =
+ Handle(Geom_CylindricalSurface) aCylSurface1 =
new Geom_CylindricalSurface(aCyl1);
- Handle_Geom_RectangularTrimmedSurface aCylTrimmed1 =
+ Handle(Geom_RectangularTrimmedSurface) aCylTrimmed1 =
new Geom_RectangularTrimmedSurface(aCylSurface1,0,2*PI,-300,100,Standard_True,Standard_True);
drawSurface(aCylTrimmed1);
if(WAIT_A_LITTLE) return;
@@ -731,17 +731,17 @@ void DCA_Presentation::sampleCylindricalSurface()
//METHOD 3.(output of dispay)
//output base cylinder
- Handle_Geom_CylindricalSurface aCylSurf = new Geom_CylindricalSurface(aCylinder);
- Handle_Geom_RectangularTrimmedSurface aCylTrimmed2 =
+ Handle(Geom_CylindricalSurface) aCylSurf = new Geom_CylindricalSurface(aCylinder);
+ Handle(Geom_RectangularTrimmedSurface) aCylTrimmed2 =
new Geom_RectangularTrimmedSurface(aCylSurf,0,2*PI,-200,200,Standard_True,Standard_True);
drawSurface(aCylTrimmed2 ,Quantity_Color(Quantity_NOC_WHITE));
//output point
drawPoint(aCylinderPoint4);
if(WAIT_A_LITTLE) return;
//output cylinder
- Handle_Geom_CylindricalSurface aCylSurface2 =
+ Handle(Geom_CylindricalSurface) aCylSurface2 =
new Geom_CylindricalSurface(aCyl2);
- Handle_Geom_RectangularTrimmedSurface aCylTrimmed3 =
+ Handle(Geom_RectangularTrimmedSurface) aCylTrimmed3 =
new Geom_RectangularTrimmedSurface(aCylSurface2,0,2*PI,-200,200,Standard_True,Standard_True);
drawSurface(aCylTrimmed3);
if(WAIT_A_LITTLE) return;
@@ -753,9 +753,9 @@ void DCA_Presentation::sampleCylindricalSurface()
drawCurve(new Geom_Circle(aCirc),Quantity_Color(Quantity_NOC_WHITE));
if(WAIT_A_LITTLE) return;
//output cylinder
- Handle_Geom_CylindricalSurface aCylSurface3 =
+ Handle(Geom_CylindricalSurface) aCylSurface3 =
new Geom_CylindricalSurface(aCyl3);
- Handle_Geom_RectangularTrimmedSurface aCylTrimmed4 =
+ Handle(Geom_RectangularTrimmedSurface) aCylTrimmed4 =
new Geom_RectangularTrimmedSurface(aCylSurface3,0,2*PI,-200,200,Standard_True,Standard_True);
drawSurface(aCylTrimmed4);
}
@@ -800,8 +800,8 @@ void DCA_Presentation::sampleToroidalSurface()
if(WAIT_A_LITTLE) return;
//output MajorRadius
- Handle_Geom_Line R1 = new Geom_Line(gce_MakeLin(aCenterPoint, gp_Dir(0,1,0)));
- Handle_Geom_TrimmedCurve aTrimmedR1 = new Geom_TrimmedCurve(R1,0,MajorRadius);
+ Handle(Geom_Line) R1 = new Geom_Line(gce_MakeLin(aCenterPoint, gp_Dir(0,1,0)));
+ Handle(Geom_TrimmedCurve) aTrimmedR1 = new Geom_TrimmedCurve(R1,0,MajorRadius);
drawCurve(aTrimmedR1, Quantity_Color(Quantity_NOC_WHITE));
drawCurve(new Geom_Circle(anAx3.Ax2(), MajorRadius));
@@ -809,7 +809,7 @@ void DCA_Presentation::sampleToroidalSurface()
// output MinorRadius as a circle
gp_Ax2 aMinorRadAx(aTrimmedR1->EndPoint(), gp_Dir(0,0,1));
- Handle_Geom_Circle aMinorRadCirc = new Geom_Circle(aMinorRadAx, MinorRadius);
+ Handle(Geom_Circle) aMinorRadCirc = new Geom_Circle(aMinorRadAx, MinorRadius);
drawCurve(aMinorRadCirc);
if(WAIT_A_LITTLE) return;
@@ -915,28 +915,28 @@ void DCA_Presentation::sampleConicalSurface()
gp_Dir aDir1(0,1,0);
//output first radius
- Handle_Geom_Line aLine = new Geom_Line(gce_MakeLin(aConePnt,aDir1));
- Handle_Geom_TrimmedCurve aTrimmed = new Geom_TrimmedCurve(aLine,0,100);
+ Handle(Geom_Line) aLine = new Geom_Line(gce_MakeLin(aConePnt,aDir1));
+ Handle(Geom_TrimmedCurve) aTrimmed = new Geom_TrimmedCurve(aLine,0,100);
drawCurve(aTrimmed,Quantity_Color(Quantity_NOC_WHITE));
//output second radius
- Handle_Geom_Line aLine1 = new Geom_Line(gce_MakeLin(aConePnt1,aDir1));
- Handle_Geom_TrimmedCurve aTrimmed1 = new Geom_TrimmedCurve(aLine1,0,50);
+ Handle(Geom_Line) aLine1 = new Geom_Line(gce_MakeLin(aConePnt1,aDir1));
+ Handle(Geom_TrimmedCurve) aTrimmed1 = new Geom_TrimmedCurve(aLine1,0,50);
drawCurve(aTrimmed1,Quantity_Color(Quantity_NOC_WHITE));
if(WAIT_A_LITTLE) return;
//output ruling of cone
- Handle_Geom_Line aLine2 = new Geom_Line(gce_MakeLin(aConePnt,aConePnt1));
- Handle_Geom_TrimmedCurve aTrimmed2 =
+ Handle(Geom_Line) aLine2 = new Geom_Line(gce_MakeLin(aConePnt,aConePnt1));
+ Handle(Geom_TrimmedCurve) aTrimmed2 =
new Geom_TrimmedCurve(aLine2,0,aConePnt.Distance(aConePnt1));
drawCurve(aTrimmed2,Quantity_Color(Quantity_NOC_RED));
if(WAIT_A_LITTLE) return;
//output cone
- Handle_Geom_ConicalSurface aConSurface1 = new Geom_ConicalSurface(aCone1);
- Handle_Geom_RectangularTrimmedSurface aConTrimmed1 =
+ Handle(Geom_ConicalSurface) aConSurface1 = new Geom_ConicalSurface(aCone1);
+ Handle(Geom_RectangularTrimmedSurface) aConTrimmed1 =
new Geom_RectangularTrimmedSurface(aConSurface1,0,2*PI,-50,450,Standard_True,Standard_True);
drawSurface(aConTrimmed1);
@@ -955,18 +955,18 @@ void DCA_Presentation::sampleConicalSurface()
if(WAIT_A_LITTLE) return;
//output of first radius
- Handle_Geom_Line aLineR1 = new Geom_Line(gce_MakeLin (aConePnt,aDir1));
- Handle_Geom_TrimmedCurve aTrimmedR1 = new Geom_TrimmedCurve(aLineR1,0,Radius1);
+ Handle(Geom_Line) aLineR1 = new Geom_Line(gce_MakeLin (aConePnt,aDir1));
+ Handle(Geom_TrimmedCurve) aTrimmedR1 = new Geom_TrimmedCurve(aLineR1,0,Radius1);
drawCurve(aTrimmedR1,Quantity_Color(Quantity_NOC_WHITE));
//output of second radius
- Handle_Geom_Line aLineR2 = new Geom_Line(gce_MakeLin (aConePnt2,aDir1));
- Handle_Geom_TrimmedCurve aTrimmedR2 = new Geom_TrimmedCurve(aLineR2,0,Radius2);
+ Handle(Geom_Line) aLineR2 = new Geom_Line(gce_MakeLin (aConePnt2,aDir1));
+ Handle(Geom_TrimmedCurve) aTrimmedR2 = new Geom_TrimmedCurve(aLineR2,0,Radius2);
drawCurve(aTrimmedR2,Quantity_Color(Quantity_NOC_WHITE));
//output cone
- Handle_Geom_ConicalSurface aConSurface2 = new Geom_ConicalSurface(aCone2);
- Handle_Geom_RectangularTrimmedSurface aConTrimmed2 =
+ Handle(Geom_ConicalSurface) aConSurface2 = new Geom_ConicalSurface(aCone2);
+ Handle(Geom_RectangularTrimmedSurface) aConTrimmed2 =
new Geom_RectangularTrimmedSurface(aConSurface2,0,2*PI,-120,400,Standard_True,Standard_True);
drawSurface(aConTrimmed2);
@@ -981,13 +981,13 @@ void DCA_Presentation::sampleConicalSurface()
if(WAIT_A_LITTLE) return;
//output radius
- Handle_Geom_Line aLine3 = new Geom_Line(gce_MakeLin (aCenterPoint,aDir1));
- Handle_Geom_TrimmedCurve aTrimmed3 = new Geom_TrimmedCurve(aLine3,0,70);
+ Handle(Geom_Line) aLine3 = new Geom_Line(gce_MakeLin (aCenterPoint,aDir1));
+ Handle(Geom_TrimmedCurve) aTrimmed3 = new Geom_TrimmedCurve(aLine3,0,70);
drawCurve(aTrimmed3 ,Quantity_Color(Quantity_NOC_WHITE));
//output cone
- Handle_Geom_ConicalSurface aConSurface3 = new Geom_ConicalSurface(aCone3);
- Handle_Geom_RectangularTrimmedSurface aConTrimmed =
+ Handle(Geom_ConicalSurface) aConSurface3 = new Geom_ConicalSurface(aCone3);
+ Handle(Geom_RectangularTrimmedSurface) aConTrimmed =
new Geom_RectangularTrimmedSurface(aConSurface3,0,2*PI,-300,300,Standard_True,Standard_True);
drawSurface(aConTrimmed);
@@ -1011,30 +1011,30 @@ void DCA_Presentation::sampleConicalSurface()
if(WAIT_A_LITTLE) return;
//output ruling of cone
- Handle_Geom_Line aLine4 = new Geom_Line(gce_MakeLin (aPoint_3,aPoint_4));
- Handle_Geom_TrimmedCurve aTrimmed4 =
+ Handle(Geom_Line) aLine4 = new Geom_Line(gce_MakeLin (aPoint_3,aPoint_4));
+ Handle(Geom_TrimmedCurve) aTrimmed4 =
new Geom_TrimmedCurve(aLine4,0,aPoint_3.Distance(aPoint_4));
drawCurve(aTrimmed4 ,Quantity_Color(Quantity_NOC_RED));
if(WAIT_A_LITTLE) return;
//output first radius
- Handle_Geom_Line aLine5 = new Geom_Line(gce_MakeLin (aPoint_3,aDir1));
- Handle_Geom_TrimmedCurve aTrimmed5 = new Geom_TrimmedCurve(aLine5,0,50);
+ Handle(Geom_Line) aLine5 = new Geom_Line(gce_MakeLin (aPoint_3,aDir1));
+ Handle(Geom_TrimmedCurve) aTrimmed5 = new Geom_TrimmedCurve(aLine5,0,50);
drawCurve(aTrimmed5 ,Quantity_Color(Quantity_NOC_WHITE));
if(WAIT_A_LITTLE) return;
//output second radius
- Handle_Geom_Line aLine6 = new Geom_Line(gce_MakeLin (aPoint_4,aDir1));
- Handle_Geom_TrimmedCurve aTrimmed6 = new Geom_TrimmedCurve(aLine6,0,60);
+ Handle(Geom_Line) aLine6 = new Geom_Line(gce_MakeLin (aPoint_4,aDir1));
+ Handle(Geom_TrimmedCurve) aTrimmed6 = new Geom_TrimmedCurve(aLine6,0,60);
drawCurve(aTrimmed6 ,Quantity_Color(Quantity_NOC_WHITE));
if(WAIT_A_LITTLE) return;
//output cone
- Handle_Geom_ConicalSurface aConSurface4 = new Geom_ConicalSurface(aCone4);
- Handle_Geom_RectangularTrimmedSurface aConTrimmed4 =
+ Handle(Geom_ConicalSurface) aConSurface4 = new Geom_ConicalSurface(aCone4);
+ Handle(Geom_RectangularTrimmedSurface) aConTrimmed4 =
new Geom_RectangularTrimmedSurface(aConSurface4,0,2*PI,-300,300,Standard_True,Standard_True);
drawSurface(aConTrimmed4);
diff --git a/samples/mfc/occtdemo/Extrema/Extrema_Presentation.cpp b/samples/mfc/occtdemo/Extrema/Extrema_Presentation.cpp
index 24dd10a1a6..3ca5f0cd69 100755
--- a/samples/mfc/occtdemo/Extrema/Extrema_Presentation.cpp
+++ b/samples/mfc/occtdemo/Extrema/Extrema_Presentation.cpp
@@ -199,7 +199,7 @@ void Extrema_Presentation::sampleCurveSur()
TCollection_AsciiString aText(
" // the curve - first object for finding the extrema." EOL
" Handle(Geom_Curve) aCurve;" EOL
- " Handle_TColgp_HArray1OfPnt aPoles = new TColgp_HArray1OfPnt(1, 4);" EOL EOL
+ " Handle(TColgp_HArray1OfPnt) aPoles = new TColgp_HArray1OfPnt(1, 4);" EOL EOL
" // points to build the curves" EOL
" Standard_Real a[][3] = {{2,1,10},{0,12,0},{5,6,0},{0,10,11}}; " EOL EOL
@@ -239,7 +239,7 @@ void Extrema_Presentation::sampleCurveSur()
// the curve - first object for finding the extrema.
Handle(Geom_Curve) aCurve;
- Handle_TColgp_HArray1OfPnt aPoles = new TColgp_HArray1OfPnt(1, 4);
+ Handle(TColgp_HArray1OfPnt) aPoles = new TColgp_HArray1OfPnt(1, 4);
// points to build the curves
Standard_Real a[][3] = {{2,1,10},{0,12,0},{5,6,0},{0,10,11}};
@@ -429,7 +429,7 @@ void Extrema_Presentation::sampleShellShell()
" for (Standard_Integer j=0; j < 3; j++)" EOL
" aSurPoles(i+1,j+1) = gp_Pnt (aSurCoords[i*3+j][0]*10-250, aSurCoords[i*3+j][1]*10-250, aSurCoords[i*3+j][2]*10-350);" EOL EOL
- " Handle_Geom_BezierSurface aSurface = new Geom_BezierSurface(aSurPoles);" EOL EOL
+ " Handle(Geom_BezierSurface) aSurface = new Geom_BezierSurface(aSurPoles);" EOL EOL
" // creating a TopoDS_Shell from Geom_Surface" EOL
" TopoDS_Shell aShape2 = BRepBuilderAPI_MakeShell(aSurface);" EOL EOL
@@ -473,7 +473,7 @@ void Extrema_Presentation::sampleShellShell()
for (Standard_Integer j=0; j < 3; j++)
aSurPoles(i+1,j+1) = gp_Pnt (aSurCoords[i*3+j][0]*10-250, aSurCoords[i*3+j][1]*10-250, aSurCoords[i*3+j][2]*10-350);
- Handle_Geom_BezierSurface aSurface = new Geom_BezierSurface(aSurPoles);
+ Handle(Geom_BezierSurface) aSurface = new Geom_BezierSurface(aSurPoles);
// creating a TopoDS_Shell from Geom_Surface
TopoDS_Shell aShape2 = BRepBuilderAPI_MakeShell(aSurface);
@@ -535,10 +535,10 @@ void Extrema_Presentation::doShapeShapeExtrema(const TopoDS_Shape& theShape1,
{
displayExtemaEdge(anExtrema.PointOnShape1(i), anExtrema.PointOnShape2(i));
- Handle_AIS_Shape aSupportShape1 = new AIS_Shape(anExtrema.SupportOnShape1(i));
+ Handle(AIS_Shape) aSupportShape1 = new AIS_Shape(anExtrema.SupportOnShape1(i));
aSupportShape1->SetMaterial(Graphic3d_NOM_PLASTIC);
aSupportShape1->SetColor(Quantity_NOC_GRAY97);
- Handle_AIS_Shape aSupportShape2 = new AIS_Shape(anExtrema.SupportOnShape2(i));
+ Handle(AIS_Shape) aSupportShape2 = new AIS_Shape(anExtrema.SupportOnShape2(i));
aSupportShape2->SetMaterial(Graphic3d_NOM_PLASTIC);
aSupportShape2->SetColor(Quantity_NOC_GRAY97);
getAISContext()->Display(aSupportShape1, Standard_False);
diff --git a/samples/mfc/occtdemo/GProps/GProps_Presentation.cpp b/samples/mfc/occtdemo/GProps/GProps_Presentation.cpp
index 2b3627f5a3..55c4c9dab7 100755
--- a/samples/mfc/occtdemo/GProps/GProps_Presentation.cpp
+++ b/samples/mfc/occtdemo/GProps/GProps_Presentation.cpp
@@ -241,7 +241,7 @@ Standard_Boolean GProps_Presentation::GProps(GProp_GProps& aProps,
if (WAIT_A_SECOND) return Standard_False;
- Handle_AIS_Point aPointIO = drawPoint(
+ Handle(AIS_Point) aPointIO = drawPoint(
aCenterOfMass, MAIN_ELEMS_COLOR, Standard_False);
aPointIO->UnsetMarker();
aPointIO->SetMarker(Aspect_TOM_O);
@@ -265,7 +265,7 @@ Standard_Boolean GProps_Presentation::GProps(GProp_GProps& aProps,
}
// display the cirle with radius = aRadiusOfGyration
- Handle_Geom_Circle aCirc = new Geom_Circle(anInertialCoordSys, aRadiusOfGyration);
+ Handle(Geom_Circle) aCirc = new Geom_Circle(anInertialCoordSys, aRadiusOfGyration);
drawCurve(aCirc, CUSTOM_INERTIAL_ELEMS_COLOR);
return Standard_True;
@@ -327,7 +327,7 @@ void GProps_Presentation::samplePoints()
//if (WAIT_A_SECOND) return;
- Handle_AIS_Point aPointIO = drawPoint(
+ Handle(AIS_Point) aPointIO = drawPoint(
aBaryCentre, MAIN_ELEMS_COLOR, Standard_False);
aPointIO->SetMarker(Aspect_TOM_STAR);
getAISContext()->Display(aPointIO);
@@ -373,7 +373,7 @@ void GProps_Presentation::sampleCurves()
aPoints(i+1) = gp_Pnt (aCoords[i][0]*k, aCoords[i][1]*k, aCoords[i][2]*k);
// edge 2 is a bezier curve that starts in edge1's end point
- Handle_Geom_BezierCurve aCurve = new Geom_BezierCurve(aPoints);
+ Handle(Geom_BezierCurve) aCurve = new Geom_BezierCurve(aPoints);
TopoDS_Edge anEdge2 = BRepBuilderAPI_MakeEdge(aCurve);
// edge 1 is a linear edge between 2 points
@@ -575,9 +575,9 @@ void GProps_Presentation::sampleSystem()
for (Standard_Integer i=0; i < nPoints; i++)
aPoints(i+1) = gp_Pnt (aCoords[i][0]*k, aCoords[i][1]*k, aCoords[i][2]*k);
- Handle_Geom_BezierCurve aCurve = new Geom_BezierCurve(aPoints);
+ Handle(Geom_BezierCurve) aCurve = new Geom_BezierCurve(aPoints);
gp_Ax1 anAxis(aPoints(1), gp_Dir(0,1,0));
- Handle_Geom_SurfaceOfRevolution aSurface = new Geom_SurfaceOfRevolution(aCurve, anAxis);
+ Handle(Geom_SurfaceOfRevolution) aSurface = new Geom_SurfaceOfRevolution(aCurve, anAxis);
TopoDS_Solid aSolid = BRepBuilderAPI_MakeSolid(BRepBuilderAPI_MakeShell(aSurface));
TopoDS_Edge e1 = BRepBuilderAPI_MakeEdge(gp_Pnt(5*k, 2*k, 0), gp_Pnt(12*k, 7*k, 0));
@@ -595,8 +595,8 @@ void GProps_Presentation::sampleSystem()
aBuilder.Perform(aWing1, Standard_True);
TopoDS_Face aWing2 = TopoDS::Face(aBuilder.Shape());
- Handle_Geom_Circle aCirc = new Geom_Circle(gp_Ax2(gp_Pnt(3*k, 11*k, 0), gp_Dir(0,-0.2,0.8)), (12-3)*k);
- Handle_Geom_TrimmedCurve aTrimCirc = new Geom_TrimmedCurve(aCirc, -PI/2, PI/2);
+ Handle(Geom_Circle) aCirc = new Geom_Circle(gp_Ax2(gp_Pnt(3*k, 11*k, 0), gp_Dir(0,-0.2,0.8)), (12-3)*k);
+ Handle(Geom_TrimmedCurve) aTrimCirc = new Geom_TrimmedCurve(aCirc, -PI/2, PI/2);
TopoDS_Edge aSpoiler = BRepBuilderAPI_MakeEdge(aTrimCirc);
TopoDS_Edge anArrow = BRepBuilderAPI_MakeEdge(gp_Pnt(3*k, 0, 0), gp_Pnt(3*k, -5*k, 0));
diff --git a/samples/mfc/occtdemo/GeomConstraints/GeomConstraints_Presentation.cpp b/samples/mfc/occtdemo/GeomConstraints/GeomConstraints_Presentation.cpp
index df5d66a2f0..b3dc89401e 100755
--- a/samples/mfc/occtdemo/GeomConstraints/GeomConstraints_Presentation.cpp
+++ b/samples/mfc/occtdemo/GeomConstraints/GeomConstraints_Presentation.cpp
@@ -95,7 +95,7 @@ void GeomConstraints_Presentation::DoSample()
// Function creating Surface,BSPline,Bezier and 2dBSpline Curves
//=========================================================================================
-static Handle_Geom_BSplineCurve createBSplineCurve(const Standard_Integer nPoles,
+static Handle(Geom_BSplineCurve) createBSplineCurve(const Standard_Integer nPoles,
const Standard_Real theCoords[][3])
{
TColgp_Array1OfPnt aCurvePoint (1, nPoles);
@@ -111,7 +111,7 @@ static Handle_Geom_BSplineCurve createBSplineCurve(const Standard_Integer nPoles
}
-static Handle_Geom_BezierCurve createBezierCurve(const Standard_Integer nPoles,
+static Handle(Geom_BezierCurve) createBezierCurve(const Standard_Integer nPoles,
const Standard_Real theCoords[][3])
{
TColgp_Array1OfPnt aCurvePoint (1, nPoles);
@@ -123,7 +123,7 @@ static Handle_Geom_BezierCurve createBezierCurve(const Standard_Integer nPoles,
return aBCurve;
}
-static Handle_Geom2d_BSplineCurve battenCurve(const Standard_Real& theAngle1,
+static Handle(Geom2d_BSplineCurve) battenCurve(const Standard_Real& theAngle1,
const Standard_Real& theAngle2)
{
//define points
@@ -149,10 +149,10 @@ static Handle_Geom2d_BSplineCurve battenCurve(const Standard_Real& theAngle1,
}
-static Handle_Geom_Surface createSurface(
+static Handle(Geom_Surface) createSurface(
const Standard_Integer endBound,
TColgp_Array1OfPnt& thePoint,
- const Handle_Geom_Plane& thePlane)
+ const Handle(Geom_Plane)& thePlane)
{
Standard_Integer Degree = 3;
Standard_Integer NbPtsOnCur = 10;
@@ -630,7 +630,7 @@ void GeomConstraints_Presentation::sample3()
}
aFile.close();
- Handle_AIS_InteractiveObject anIO,aNewIO;
+ Handle(AIS_InteractiveObject) anIO,aNewIO;
for(Standard_Integer j = 1; j <= int(aSize / 20); j++)
{
diff --git a/samples/mfc/occtdemo/Glue/Glue_Presentation.cpp b/samples/mfc/occtdemo/Glue/Glue_Presentation.cpp
index a1f3321cd0..e476b230d3 100755
--- a/samples/mfc/occtdemo/Glue/Glue_Presentation.cpp
+++ b/samples/mfc/occtdemo/Glue/Glue_Presentation.cpp
@@ -168,9 +168,9 @@ void Glue_Presentation::sampleCylinder()
TopoDS_Edge e4 = BRepBuilderAPI_MakeEdge(gp_Pnt(24,0,0),gp_Pnt(24,15,0));
TopoDS_Edge e5 = BRepBuilderAPI_MakeEdge(gp_Pnt(24,15,0),gp_Pnt(0,15,0));
TopoDS_Edge e6 = BRepBuilderAPI_MakeEdge(gp_Pnt(0,15,0),gp_Pnt(0,0,0));
- Handle_Geom_Circle e2C = new Geom_Circle(gp_Ax2(gp_Pnt(12,0,0), gp_Dir(0,0,1)), 7);
+ Handle(Geom_Circle) e2C = new Geom_Circle(gp_Ax2(gp_Pnt(12,0,0), gp_Dir(0,0,1)), 7);
e2C->Rotate(gp_Ax1(gp_Pnt(12,0,0),gp_Dir(0,0,1)),PI);
- Handle_Geom_TrimmedCurve e2A = new Geom_TrimmedCurve(e2C, PI, 2*PI);
+ Handle(Geom_TrimmedCurve) e2A = new Geom_TrimmedCurve(e2C, PI, 2*PI);
TopoDS_Edge e2 = BRepBuilderAPI_MakeEdge(e2A);
BRepBuilderAPI_MakeWire wireMaker(e1,e2,e3,e4);
@@ -311,7 +311,7 @@ void Glue_Presentation::sampleMoreBoxes()
// Purpose : display a shape in wire frame mode
//================================================================
Standard_Boolean Glue_Presentation::drawShapeWf(TopoDS_Shape& aShape,
- Handle_AIS_InteractiveObject& io)
+ Handle(AIS_InteractiveObject)& io)
{
io = drawShape(aShape, Graphic3d_NOM_BRASS, Standard_False);
getAISContext()->SetDisplayMode(io, AIS_WireFrame, Standard_False);
@@ -325,7 +325,7 @@ Standard_Boolean Glue_Presentation::drawShapeWf(TopoDS_Shape& aShape,
// Purpose : display a shape in shaded mode
//================================================================
Standard_Boolean Glue_Presentation::drawShapeSh(TopoDS_Shape& aShape,
- Handle_AIS_InteractiveObject& io)
+ Handle(AIS_InteractiveObject)& io)
{
io = drawShape(aShape, Graphic3d_NOM_BRASS, Standard_False);
getAISContext()->SetDisplayMode(io, AIS_Shaded, Standard_False);
@@ -346,7 +346,7 @@ Standard_Boolean Glue_Presentation::displayShapesFaces(TopoDS_Shape& aShape1,
TopTools_ListOfShape& aEdges1,
TopTools_ListOfShape& aEdges2)
{
- Handle_AIS_Shape io1,io2,io3,io4,io5,io6;
+ Handle(AIS_Shape) io1,io2,io3,io4,io5,io6;
if (!drawShapeSh(aShape1, io1)) return Standard_False;
if (!drawShapeSh(aShape2, io2)) return Standard_False;
diff --git a/samples/mfc/occtdemo/Glue/Glue_Presentation.h b/samples/mfc/occtdemo/Glue/Glue_Presentation.h
index d1c2dd1ce2..d1a9d24971 100755
--- a/samples/mfc/occtdemo/Glue/Glue_Presentation.h
+++ b/samples/mfc/occtdemo/Glue/Glue_Presentation.h
@@ -13,8 +13,8 @@
class GProp_Glue;
class TCollection_AsciiString;
class TopoDS_Shape;
-class Handle_AIS_InteractiveObject;
-class TopTools_ListOfShape;
+class AIS_InteractiveObject;
+#include
class Glue_Presentation : public OCCDemo_Presentation
{
@@ -37,10 +37,10 @@ private:
TopTools_ListOfShape&, TopTools_ListOfShape&);
// display a given shape in wire frame mode
- Standard_Boolean drawShapeWf(TopoDS_Shape&,Handle_AIS_InteractiveObject&);
+ Standard_Boolean drawShapeWf(TopoDS_Shape&,Handle(AIS_InteractiveObject)&);
// display a given shape in shaded mode
- Standard_Boolean drawShapeSh(TopoDS_Shape&,Handle_AIS_InteractiveObject&);
+ Standard_Boolean drawShapeSh(TopoDS_Shape&,Handle(AIS_InteractiveObject)&);
void sampleBoxes();
void sampleCylinder();
diff --git a/samples/mfc/occtdemo/HLR/HLR_Presentation.cpp b/samples/mfc/occtdemo/HLR/HLR_Presentation.cpp
index d27724fd0e..99677786ce 100755
--- a/samples/mfc/occtdemo/HLR/HLR_Presentation.cpp
+++ b/samples/mfc/occtdemo/HLR/HLR_Presentation.cpp
@@ -78,11 +78,11 @@ void HLR_Presentation::DoSample()
// Purpose : returns Prs3d_Projector object created corresponding
// to the current view parameters
//================================================================
-Handle_Prs3d_Projector HLR_Presentation::Projector(gp_Trsf& theTrsf)
+Handle(Prs3d_Projector) HLR_Presentation::Projector(gp_Trsf& theTrsf)
{
// retrieve view parameters for creation of Prs3d_Projector object
getViewer()->InitActiveViews();
- Handle_V3d_View aView = getViewer()->ActiveView();
+ Handle(V3d_View) aView = getViewer()->ActiveView();
Standard_Real aProjVecX, aProjVecY, aProjVecZ;
aView->Proj(aProjVecX, aProjVecY, aProjVecZ);
@@ -93,7 +93,7 @@ Handle_Prs3d_Projector HLR_Presentation::Projector(gp_Trsf& theTrsf)
Standard_Real aPntX = 0.0, aPntY = 0.0, aPntZ = 0.0;
// create a projector object
- Handle_Prs3d_Projector aProjector = new Prs3d_Projector(Standard_False, 0.0,
+ Handle(Prs3d_Projector) aProjector = new Prs3d_Projector(Standard_False, 0.0,
aProjVecX, aProjVecY, aProjVecZ, aPntX, aPntY, aPntZ, aUpX, aUpY, aUpZ);
gp_Pnt At (aPntX,aPntY,aPntZ);
@@ -122,14 +122,14 @@ Standard_Boolean HLR_Presentation::HLR(const TopoDS_Shape& aShape, const Standar
" // initializing aShape ..." EOL
"" EOL
" // Build The algorithm object" EOL
- " Handle_HLRBRep_Algo myAlgo = new HLRBRep_Algo();" EOL
+ " Handle(HLRBRep_Algo) myAlgo = new HLRBRep_Algo();" EOL
" " EOL
" // Add Shapes into the algorithm" EOL
" Standard_Real nbIso = 5; // number of isolines to display" EOL
" myAlgo->Add(aShape, nbIso);" EOL
"" EOL
" // create a projector object" EOL
- " Handle_V3d_View aView;" EOL
+ " Handle(V3d_View) aView;" EOL
" // initializing V3d_View ..." EOL
" " EOL
" Standard_Real aProjVecX, aProjVecY, aProjVecZ;" EOL
@@ -141,7 +141,7 @@ Standard_Boolean HLR_Presentation::HLR(const TopoDS_Shape& aShape, const Standar
" Standard_Real aPntX = 0.0, aPntY = 0.0, aPntZ = 0.0;" EOL
"" EOL
" // create a projector object" EOL
- " Handle_Prs3d_Projector aProjector = new Prs3d_Projector(Standard_False, 0.0, " EOL
+ " Handle(Prs3d_Projector) aProjector = new Prs3d_Projector(Standard_False, 0.0, " EOL
" aProjVecX, aProjVecY, aProjVecZ, aPntX, aPntY, aPntZ, aUpX, aUpY, aUpZ);" EOL
" " EOL
" // Set The Projector" EOL
@@ -189,7 +189,7 @@ Standard_Boolean HLR_Presentation::HLR(const TopoDS_Shape& aShape, const Standar
" Isolines - YELLOW" EOL);
// Build The algorithm object
- Handle_HLRBRep_Algo myAlgo = new HLRBRep_Algo();
+ Handle(HLRBRep_Algo) myAlgo = new HLRBRep_Algo();
// Add Shapes into the algorithm
myAlgo->Add(aShape, nbIso);
@@ -234,7 +234,7 @@ Standard_Boolean HLR_Presentation::HLR(const TopoDS_Shape& aShape, const Standar
TopoDS_Shape OutLineHCompound = aHLRToShape.OutLineHCompound();
TopoDS_Shape IsoLineHCompound = aHLRToShape.IsoLineHCompound();
- Handle_AIS_Shape aShapeIO = drawShape(aShape);
+ Handle(AIS_Shape) aShapeIO = drawShape(aShape);
if (WAIT_A_SECOND) return Standard_False;
@@ -268,13 +268,13 @@ Standard_Boolean HLR_Presentation::PolyHLR(const TopoDS_Shape& aShape)
" // triangulating aShape with BRepMesh::Mesh" EOL
"" EOL
" // Build The algorithm object" EOL
- " Handle_HLRBRep_PolyAlgo myPolyAlgo = new HLRBRep_PolyAlgo();" EOL
+ " Handle(HLRBRep_PolyAlgo) myPolyAlgo = new HLRBRep_PolyAlgo();" EOL
" " EOL
" // Add Shapes into the algorithm" EOL
" myPolyAlgo->Load(aShape);" EOL
"" EOL
" // create a projector object" EOL
- " Handle_V3d_View aView;" EOL
+ " Handle(V3d_View) aView;" EOL
" // initializing V3d_View ..." EOL
" " EOL
" Standard_Real aProjVecX, aProjVecY, aProjVecZ;" EOL
@@ -286,7 +286,7 @@ Standard_Boolean HLR_Presentation::PolyHLR(const TopoDS_Shape& aShape)
" Standard_Real aPntX = 0.0, aPntY = 0.0, aPntZ = 0.0;" EOL
"" EOL
" // create a projector object" EOL
- " Handle_Prs3d_Projector aProjector = new Prs3d_Projector(Standard_False, 0.0, " EOL
+ " Handle(Prs3d_Projector) aProjector = new Prs3d_Projector(Standard_False, 0.0, " EOL
" aProjVecX, aProjVecY, aProjVecZ, aPntX, aPntY, aPntZ, aUpX, aUpY, aUpZ);" EOL
" " EOL
" // Set The Projector" EOL
@@ -328,7 +328,7 @@ Standard_Boolean HLR_Presentation::PolyHLR(const TopoDS_Shape& aShape)
" Isolines - YELLOW" EOL);
// Build The algorithm object
- Handle_HLRBRep_PolyAlgo myPolyAlgo = new HLRBRep_PolyAlgo();
+ Handle(HLRBRep_PolyAlgo) myPolyAlgo = new HLRBRep_PolyAlgo();
// Add Shapes into the algorithm
myPolyAlgo->Load(aShape);
@@ -367,7 +367,7 @@ Standard_Boolean HLR_Presentation::PolyHLR(const TopoDS_Shape& aShape)
TopoDS_Shape RgNLineHCompound = aPolyHLRToShape.RgNLineHCompound();
TopoDS_Shape OutLineHCompound = aPolyHLRToShape.OutLineHCompound();
- Handle_AIS_Shape aShapeIO = drawShape(aShape);
+ Handle(AIS_Shape) aShapeIO = drawShape(aShape);
if (WAIT_A_SECOND) return Standard_False;
@@ -409,7 +409,7 @@ Standard_Boolean HLR_Presentation::drawHLR(TopoDS_Shape& aVShape,
aVShape.Location(aLoc);
// create a look for a line according to aColor and aLineType
- Handle_AIS_Shape anIO = drawShape(aVShape, aColor, Standard_False);
+ Handle(AIS_Shape) anIO = drawShape(aVShape, aColor, Standard_False);
anIO->Attributes()->WireAspect()->SetTypeOfLine(Aspect_TOL_SOLID);
getAISContext()->Display(anIO, HShapeIsNull);
@@ -420,7 +420,7 @@ Standard_Boolean HLR_Presentation::drawHLR(TopoDS_Shape& aVShape,
aHShape.Location(aLoc);
// create a look for a line according to aColor and aLineType
- Handle_AIS_Shape anIO = drawShape(aHShape, aColor, Standard_False);
+ Handle(AIS_Shape) anIO = drawShape(aHShape, aColor, Standard_False);
anIO->Attributes()->WireAspect()->SetTypeOfLine(Aspect_TOL_DASH);
getAISContext()->Display(anIO);
@@ -464,7 +464,7 @@ void HLR_Presentation::sampleTorus()
Standard_Real MinorRadius = 10;
//make torus
- Handle_Geom_ToroidalSurface aTorSurface = new Geom_ToroidalSurface(anAx3, MajorRadius, MinorRadius);
+ Handle(Geom_ToroidalSurface) aTorSurface = new Geom_ToroidalSurface(anAx3, MajorRadius, MinorRadius);
TopoDS_Shell aShape = BRepBuilderAPI_MakeShell(aTorSurface);
Standard_Integer nbIso = 3;
diff --git a/samples/mfc/occtdemo/HLR/HLR_Presentation.h b/samples/mfc/occtdemo/HLR/HLR_Presentation.h
index a37082c955..e88180414d 100755
--- a/samples/mfc/occtdemo/HLR/HLR_Presentation.h
+++ b/samples/mfc/occtdemo/HLR/HLR_Presentation.h
@@ -11,7 +11,7 @@
#include
class TopoDS_Shape;
-class Handle_Prs3d_Projector;
+class Prs3d_Projector;
class gp_Trsf;
class TopLoc_Location;
@@ -28,7 +28,7 @@ public:
// one phase of iterations
private:
- Handle_Prs3d_Projector Projector(gp_Trsf& theTrsf);
+ Handle(Prs3d_Projector) Projector(gp_Trsf& theTrsf);
Standard_Boolean HLR(const TopoDS_Shape&, const Standard_Integer nbIso);
Standard_Boolean PolyHLR(const TopoDS_Shape&);
Standard_Boolean drawHLR(TopoDS_Shape&, TopoDS_Shape&, const TopLoc_Location&,
diff --git a/samples/mfc/occtdemo/Interpol/Interpol_Presentation.cpp b/samples/mfc/occtdemo/Interpol/Interpol_Presentation.cpp
index bd947afeeb..19b7ff75a0 100755
--- a/samples/mfc/occtdemo/Interpol/Interpol_Presentation.cpp
+++ b/samples/mfc/occtdemo/Interpol/Interpol_Presentation.cpp
@@ -70,7 +70,7 @@ void Interpol_Presentation::DoSample()
// Output : vectors theTan, theNewTan.
// Returns : false if failed, true if ok.
//================================================================
-static Standard_Boolean calculateNewTangent(const Handle_Geom_BSplineCurve& anInterpolationCurve,
+static Standard_Boolean calculateNewTangent(const Handle(Geom_BSplineCurve)& anInterpolationCurve,
gp_Pnt aPointOnCurve, gp_Vec& theTan, gp_Vec& theNewTan,
Standard_Real angle)
{
@@ -128,7 +128,7 @@ void Interpol_Presentation::interpolate (Standard_Real aCoords[][3],
" aNoPeriodInterpolate.Perform();" EOL
" // check results" EOL
" if (!aNoPeriodInterpolate.IsDone()) return;" EOL
- " Handle_Geom_BSplineCurve anInterpolationCurve = aNoPeriodInterpolate.Curve();" EOL EOL
+ " Handle(Geom_BSplineCurve) anInterpolationCurve = aNoPeriodInterpolate.Curve();" EOL EOL
" //===================================" EOL
" // Creating a constrained interpolation curve" EOL
@@ -183,9 +183,9 @@ void Interpol_Presentation::interpolate (Standard_Real aCoords[][3],
aNoPeriodInterpolate.Perform();
// check results
if (!aNoPeriodInterpolate.IsDone()) return;
- Handle_Geom_BSplineCurve anInterpolationCurve = aNoPeriodInterpolate.Curve();
+ Handle(Geom_BSplineCurve) anInterpolationCurve = aNoPeriodInterpolate.Curve();
- Handle_AIS_InteractiveObject aShowCurve = drawCurve(anInterpolationCurve);
+ Handle(AIS_InteractiveObject) aShowCurve = drawCurve(anInterpolationCurve);
if (WAIT_A_SECOND) return;
//===================================
@@ -197,7 +197,7 @@ void Interpol_Presentation::interpolate (Standard_Real aCoords[][3],
Standard_Real scaleVec = 1;
aCopyFlags->Init(Standard_False);
- Handle_AIS_InteractiveObject aShowTan;
+ Handle(AIS_InteractiveObject) aShowTan;
for (i = indexes.Lower(); i <= indexes.Upper(); i++)
{
gp_Pnt aPoint = aPnts->Value(indexes(i));
diff --git a/samples/mfc/occtdemo/Interpol/Interpol_Presentation.h b/samples/mfc/occtdemo/Interpol/Interpol_Presentation.h
index da6ed63de1..ceb5053e41 100755
--- a/samples/mfc/occtdemo/Interpol/Interpol_Presentation.h
+++ b/samples/mfc/occtdemo/Interpol/Interpol_Presentation.h
@@ -11,10 +11,10 @@
#include
-class Handle_Geom_BSplineCurve;
-class Handle_TColgp_HArray1OfPnt;
-class TColStd_Array1OfInteger;
-class TColStd_Array1OfReal;
+class Geom_BSplineCurve;
+#include
+#include
+#include
class Interpol_Presentation : public OCCDemo_Presentation
{
diff --git a/samples/mfc/occtdemo/Intersections/Intersections_Presentation.cpp b/samples/mfc/occtdemo/Intersections/Intersections_Presentation.cpp
index d5d259efe3..86b9ce8b2f 100755
--- a/samples/mfc/occtdemo/Intersections/Intersections_Presentation.cpp
+++ b/samples/mfc/occtdemo/Intersections/Intersections_Presentation.cpp
@@ -70,7 +70,7 @@ void Intersections_Presentation::DoSample()
//////////////////////////////////////////////////////////////////////
-static Handle_Geom2d_BSplineCurve create2dBSplineCurve(const Standard_Integer thePoles,
+static Handle(Geom2d_BSplineCurve) create2dBSplineCurve(const Standard_Integer thePoles,
const Standard_Real theCoords[][2])
{
TColgp_Array1OfPnt2d thePoints(1, thePoles);
@@ -86,7 +86,7 @@ static Handle_Geom2d_BSplineCurve create2dBSplineCurve(const Standard_Integer th
}
-static Handle_Geom_BSplineSurface createBSplineSurface(const Standard_Real theZCoords[],
+static Handle(Geom_BSplineSurface) createBSplineSurface(const Standard_Real theZCoords[],
const Standard_Real theXStep,
const Standard_Real theYStep,
const Standard_Real theXBound,
diff --git a/samples/mfc/occtdemo/LProps/LProps_Presentation.cpp b/samples/mfc/occtdemo/LProps/LProps_Presentation.cpp
index fd46f8179f..ec58a54c61 100755
--- a/samples/mfc/occtdemo/LProps/LProps_Presentation.cpp
+++ b/samples/mfc/occtdemo/LProps/LProps_Presentation.cpp
@@ -145,7 +145,7 @@ void LProps_Presentation::sampleBezierSurface()
sizeof(aPoints)/(sizeof(Standard_Real)*2), aPoints);
}
-void LProps_Presentation::showCurveLProps (Handle_Geom_Curve theCurve,
+void LProps_Presentation::showCurveLProps (Handle(Geom_Curve) theCurve,
const Standard_CString theName,
const Standard_Integer theNbPoints,
const Standard_Real thePoints[])
@@ -283,7 +283,7 @@ void LProps_Presentation::showCurveLProps (Handle_Geom_Curve theCurve,
}
}
-void LProps_Presentation::showSurfaceLProps (Handle_Geom_Surface theSurface,
+void LProps_Presentation::showSurfaceLProps (Handle(Geom_Surface) theSurface,
const Standard_CString theName,
const Standard_Integer theNbPoints,
const Standard_Real thePoints[][2])
diff --git a/samples/mfc/occtdemo/LProps/LProps_Presentation.h b/samples/mfc/occtdemo/LProps/LProps_Presentation.h
index bbb281d033..b88575864f 100755
--- a/samples/mfc/occtdemo/LProps/LProps_Presentation.h
+++ b/samples/mfc/occtdemo/LProps/LProps_Presentation.h
@@ -31,13 +31,13 @@ private:
void samplePBSpline();
void sampleBezierSurface();
- void showCurveLProps (Handle_Geom_Curve theCurve,
+ void showCurveLProps (Handle(Geom_Curve) theCurve,
const Standard_CString theName,
const Standard_Integer theNbPoints,
const Standard_Real thePoints[]);
// Draws the curve, shows local properties and updates the result dialog
- void showSurfaceLProps (Handle_Geom_Surface theSurface,
+ void showSurfaceLProps (Handle(Geom_Surface) theSurface,
const Standard_CString theName,
const Standard_Integer theNbPoints,
const Standard_Real thePoints[][2]);
diff --git a/samples/mfc/occtdemo/Offset2d/Offset2d_Presentation.cpp b/samples/mfc/occtdemo/Offset2d/Offset2d_Presentation.cpp
index 669ec43a58..74dce7d872 100755
--- a/samples/mfc/occtdemo/Offset2d/Offset2d_Presentation.cpp
+++ b/samples/mfc/occtdemo/Offset2d/Offset2d_Presentation.cpp
@@ -316,7 +316,7 @@ void Offset2d_Presentation::sampleWire2()
drawAndOffsetWire (aWire, aName, aText);
}
-void Offset2d_Presentation::drawAndOffsetCurve2d (Handle_Geom2d_Curve theCurve,
+void Offset2d_Presentation::drawAndOffsetCurve2d (Handle(Geom2d_Curve) theCurve,
const Standard_CString theName,
TCollection_AsciiString& theText)
{
@@ -339,7 +339,7 @@ void Offset2d_Presentation::drawAndOffsetCurve2d (Handle_Geom2d_Curve theCurve,
getViewer()->ActiveView()->Update();
// Make offset curves
- Handle_AIS_InteractiveObject aObj;
+ Handle(AIS_InteractiveObject) aObj;
for (int i=1; i <= SampleDescrs[myIndex].nNeg; i++)
{
if (WAIT_A_LITTLE)
@@ -381,7 +381,7 @@ void Offset2d_Presentation::drawAndOffsetWire(const TopoDS_Wire& theWire,
setResultText (theText.ToCString());
// Display theWire
- Handle_AIS_InteractiveObject aObj = new AIS_Shape (theWire);
+ Handle(AIS_InteractiveObject) aObj = new AIS_Shape (theWire);
getAISContext()->SetColor (aObj, CurveColor);
getAISContext()->Display (aObj);
getViewer()->InitActiveViews();
diff --git a/samples/mfc/occtdemo/Offset2d/Offset2d_Presentation.h b/samples/mfc/occtdemo/Offset2d/Offset2d_Presentation.h
index 07d1349b87..eae0f7fb3e 100755
--- a/samples/mfc/occtdemo/Offset2d/Offset2d_Presentation.h
+++ b/samples/mfc/occtdemo/Offset2d/Offset2d_Presentation.h
@@ -36,7 +36,7 @@ private:
void sampleWire1();
void sampleWire2();
- void drawAndOffsetCurve2d (Handle_Geom2d_Curve theCurve,
+ void drawAndOffsetCurve2d (Handle(Geom2d_Curve) theCurve,
const Standard_CString theName,
TCollection_AsciiString& theText);
void drawAndOffsetWire (const TopoDS_Wire& theWire,
diff --git a/samples/mfc/occtdemo/PointOnCurve/PointOnCurve_Presentation.cpp b/samples/mfc/occtdemo/PointOnCurve/PointOnCurve_Presentation.cpp
index 8a3db940af..550c83f51c 100755
--- a/samples/mfc/occtdemo/PointOnCurve/PointOnCurve_Presentation.cpp
+++ b/samples/mfc/occtdemo/PointOnCurve/PointOnCurve_Presentation.cpp
@@ -78,7 +78,7 @@ void PointOnCurve_Presentation::DoSample()
// Purpose : creating a BSpline Curve
//================================================================
-static Handle_Geom_BSplineCurve CreateCurve()
+static Handle(Geom_BSplineCurve) CreateCurve()
{
Standard_Real aCoords[][3] =
{
@@ -196,7 +196,7 @@ void PointOnCurve_Presentation::sample1()
gce_MakeLin aLin(aPoint1, aPoint2);
Standard_Real aParam = aPoint1.Distance(aPoint2);
- Handle_Geom_TrimmedCurve aSeg = new Geom_TrimmedCurve(new Geom_Line(aLin), 0, aParam);
+ Handle(Geom_TrimmedCurve) aSeg = new Geom_TrimmedCurve(new Geom_Line(aLin), 0, aParam);
drawCurve(aSeg, Quantity_NOC_GREEN1);
}
if (WAIT_A_LITTLE) return;
diff --git a/samples/mfc/occtdemo/PointOnCurve/PointOnCurve_Presentation.h b/samples/mfc/occtdemo/PointOnCurve/PointOnCurve_Presentation.h
index 5a9bb8a7d6..e2fe31f7a9 100755
--- a/samples/mfc/occtdemo/PointOnCurve/PointOnCurve_Presentation.h
+++ b/samples/mfc/occtdemo/PointOnCurve/PointOnCurve_Presentation.h
@@ -10,7 +10,7 @@
#endif // _MSC_VER > 1000
#include
-class Handle_Geom_Curve;
+class Geom_Curve;
class PointOnCurve_Presentation : public OCCDemo_Presentation
{
@@ -18,8 +18,8 @@ public:
// Construction
PointOnCurve_Presentation();
private:
- Handle_AIS_InteractiveObject PointOnCurve_Presentation::DrawCurve (
- Handle_Geom_Curve theCurve, Quantity_NameOfColor theColor);
+ Handle(AIS_InteractiveObject) PointOnCurve_Presentation::DrawCurve (
+ Handle(Geom_Curve) theCurve, Quantity_NameOfColor theColor);
public:
// Iteration on samples
diff --git a/samples/mfc/occtdemo/Projection/Projection_Presentation.cpp b/samples/mfc/occtdemo/Projection/Projection_Presentation.cpp
index 3ca87dd7dd..2a211d7798 100755
--- a/samples/mfc/occtdemo/Projection/Projection_Presentation.cpp
+++ b/samples/mfc/occtdemo/Projection/Projection_Presentation.cpp
@@ -73,7 +73,7 @@ Projection_Presentation::Projection_Presentation()
// Function : createCurve
// Purpose : returns a BSpline curve with 10 poles
//================================================================
-static Handle_Geom_BSplineCurve createCurve()
+static Handle(Geom_BSplineCurve) createCurve()
{
Standard_Real aCoords[][3] = {{-6,3,0},{-5,1,0},{-4,0,0},{-2,1,0},{-1,-1,0},
{0,-1,0},{1,0,0},{2,2,0},{3,1,0},{4,0,0}};
@@ -95,7 +95,7 @@ static Handle_Geom_BSplineCurve createCurve()
// Function : createSurface
// Purpose : returns a BSpline Surface with 8 poles
//================================================================
-static Handle_Geom_BSplineSurface createSurface()
+static Handle(Geom_BSplineSurface) createSurface()
{
// define points array
TColgp_Array2OfPnt aPoints (1,2,1,4);
@@ -244,7 +244,7 @@ void Projection_Presentation::sample2()
" gp_Dir aDir(0,0,1);" EOL
" gp_Ax3 anAx3(aCenterPoint, aDir);" EOL
" Standard_Real Radius = 300;" EOL
- " Handle_Geom_CylindricalSurface aCylSurface =" EOL
+ " Handle(Geom_CylindricalSurface) aCylSurface =" EOL
" new Geom_CylindricalSurface(anAx3, Radius);" EOL
"" EOL
" // projection of a point onto a surface" EOL
@@ -277,7 +277,7 @@ void Projection_Presentation::sample2()
gp_Dir aDir(0,0,1);
gp_Ax3 anAx3(aCenterPoint, aDir);
Standard_Real Radius = 300;
- Handle_Geom_CylindricalSurface aCylSurface =
+ Handle(Geom_CylindricalSurface) aCylSurface =
new Geom_CylindricalSurface(anAx3, Radius);
// projection of a point onto a surface
@@ -314,7 +314,7 @@ void Projection_Presentation::sample2()
if(WAIT_A_LITTLE) return;
// output cylindrical surface
- Handle_Geom_RectangularTrimmedSurface aCylTrimmed =
+ Handle(Geom_RectangularTrimmedSurface) aCylTrimmed =
new Geom_RectangularTrimmedSurface(aCylSurface,0,2*PI,-200,300,Standard_True,Standard_True);
drawSurface(aCylTrimmed);
@@ -352,21 +352,21 @@ void Projection_Presentation::sample3()
" // define a planar surface" EOL
" gp_Pnt aPlanePnt(0,0,-100);" EOL
" gp_Dir aPlaneDir(0,0,1);" EOL
- " Handle_Geom_Plane aPlane = new Geom_Plane(aPlanePnt, aPlaneDir);" EOL
+ " Handle(Geom_Plane) aPlane = new Geom_Plane(aPlanePnt, aPlaneDir);" EOL
"" EOL
" // create a cylindrical surface" EOL
" gp_Pnt aCylPnt(-100,0,550);" EOL
" gp_Dir aCylDir(0,1,0);" EOL
" gp_Ax3 anAx3(aCylPnt, aCylDir);" EOL
" Standard_Real aRadius = 800;" EOL
- " Handle_Geom_CylindricalSurface aCylSurface = " EOL
+ " Handle(Geom_CylindricalSurface) aCylSurface = " EOL
" new Geom_CylindricalSurface(anAx3, aRadius);" EOL
"" EOL
" // Projection of a curve onto a planar surface" EOL
- " Handle_Geom_Curve aPlaneProjCurve = GeomProjLib::Project(aCurve, aPlane);" EOL
+ " Handle(Geom_Curve) aPlaneProjCurve = GeomProjLib::Project(aCurve, aPlane);" EOL
"" EOL
" // Projection of a curve onto a cylindrical surface" EOL
- " Handle_Geom_Curve aCylProjCurve = GeomProjLib::Project(aCurve, aCylSurface);" EOL
+ " Handle(Geom_Curve) aCylProjCurve = GeomProjLib::Project(aCurve, aCylSurface);" EOL
);
// create BSpline curve
@@ -378,21 +378,21 @@ void Projection_Presentation::sample3()
// define a planar surface
gp_Pnt aPlanePnt(0,0,-100);
gp_Dir aPlaneDir(0,0,1);
- Handle_Geom_Plane aPlane = new Geom_Plane(aPlanePnt, aPlaneDir);
+ Handle(Geom_Plane) aPlane = new Geom_Plane(aPlanePnt, aPlaneDir);
// create a cylindrical surface
gp_Pnt aCylPnt(-100,0,550);
gp_Dir aCylDir(0,1,0);
gp_Ax3 anAx3(aCylPnt, aCylDir);
Standard_Real aRadius = 800;
- Handle_Geom_CylindricalSurface aCylSurface =
+ Handle(Geom_CylindricalSurface) aCylSurface =
new Geom_CylindricalSurface(anAx3, aRadius);
// Projection of a curve onto a planar surface
- Handle_Geom_Curve aPlaneProjCurve = GeomProjLib::Project(aCurve, aPlane);
+ Handle(Geom_Curve) aPlaneProjCurve = GeomProjLib::Project(aCurve, aPlane);
// Projection of a curve onto a cylindrical surface
- Handle_Geom_Curve aCylProjCurve = GeomProjLib::Project(aCurve, aCylSurface);
+ Handle(Geom_Curve) aCylProjCurve = GeomProjLib::Project(aCurve, aCylSurface);
// ===== output ===========
// output original curve
@@ -417,7 +417,7 @@ void Projection_Presentation::sample3()
getAISContext()->Erase(aProjCurveIO, Standard_False);
// output the second surface - cylindrical surface
- Handle_Geom_RectangularTrimmedSurface aCylTrimmed =
+ Handle(Geom_RectangularTrimmedSurface) aCylTrimmed =
new Geom_RectangularTrimmedSurface(aCylSurface,PI/2,-PI/2,-450,550,Standard_True,Standard_True);
Handle(AIS_InteractiveObject) aCylIO = drawSurface(
aCylTrimmed, Quantity_Color(Quantity_NOC_YELLOW), Standard_False);
diff --git a/samples/mfc/occtdemo/Simplify/Simplify_Presentation.cpp b/samples/mfc/occtdemo/Simplify/Simplify_Presentation.cpp
index 321f531e4c..05e931d81f 100755
--- a/samples/mfc/occtdemo/Simplify/Simplify_Presentation.cpp
+++ b/samples/mfc/occtdemo/Simplify/Simplify_Presentation.cpp
@@ -98,7 +98,7 @@ void Simplify_Presentation::simplify(const TopoDS_Shape& aShape)
" TopLoc_Location aLocation;" EOL
"" EOL
" // takes the triangulation of the face aFace" EOL
- " Handle_Poly_Triangulation aTr = BRep_Tool::Triangulation(aFace,aLocation);" EOL
+ " Handle(Poly_Triangulation) aTr = BRep_Tool::Triangulation(aFace,aLocation);" EOL
"" EOL
" if(!aTr.IsNull())" EOL
" { " EOL
@@ -224,7 +224,7 @@ void Simplify_Presentation::simplify(const TopoDS_Shape& aShape)
" TopoDS_Face aFace;" EOL
" B.MakeFace(aFace, aSurf, Precision::Confusion());" EOL
" B.Add(aFace, aWire);" EOL
- " Handle_ShapeFix_Shape sfs = new ShapeFix_Shape(aFace);" EOL
+ " Handle(ShapeFix_Shape) sfs = new ShapeFix_Shape(aFace);" EOL
" sfs->Perform();" EOL
" TopoDS_Shape aFixedFace = sfs->Shape();" EOL
" if (aFixedFace.IsNull()) " EOL
@@ -251,7 +251,7 @@ void Simplify_Presentation::simplify(const TopoDS_Shape& aShape)
TopLoc_Location aLocation;
// takes the triangulation of the face aFace
- Handle_Poly_Triangulation aTr = BRep_Tool::Triangulation(aFace,aLocation);
+ Handle(Poly_Triangulation) aTr = BRep_Tool::Triangulation(aFace,aLocation);
if(!aTr.IsNull())
{
@@ -377,14 +377,14 @@ void Simplify_Presentation::simplify(const TopoDS_Shape& aShape)
TopoDS_Face aFace;
B.MakeFace(aFace, aSurf, Precision::Confusion());
B.Add(aFace, aWire);
- Handle_ShapeFix_Shape sfs = new ShapeFix_Shape(aFace);
+ Handle(ShapeFix_Shape) sfs = new ShapeFix_Shape(aFace);
sfs->Perform();
TopoDS_Shape aFixedFace = sfs->Shape();
if (aFixedFace.IsNull())
return;
// output surface, make it half transparent
- Handle_AIS_InteractiveObject aSurfIO = drawSurface(
+ Handle(AIS_InteractiveObject) aSurfIO = drawSurface(
aSurf, Quantity_NOC_LEMONCHIFFON3, Standard_False);
aSurfIO->SetTransparency(0.5);
getAISContext()->Display(aSurfIO, Standard_False);
diff --git a/samples/mfc/occtdemo/Sweep/Sweep_Presentation.cpp b/samples/mfc/occtdemo/Sweep/Sweep_Presentation.cpp
index ff5db5328b..6b1676adc7 100755
--- a/samples/mfc/occtdemo/Sweep/Sweep_Presentation.cpp
+++ b/samples/mfc/occtdemo/Sweep/Sweep_Presentation.cpp
@@ -76,7 +76,7 @@ void Sweep_Presentation::DoSample()
// Auxiliary functions
//////////////////////////////////////////////////////////////////////
-static Handle_Geom_Curve mkBezierCurve(const Standard_Integer nPoles,
+static Handle(Geom_Curve) mkBezierCurve(const Standard_Integer nPoles,
const Standard_Real theCoords[][3],
const Standard_Real aScale = 1,
const gp_XYZ& aShift = gp_XYZ(0,0,0))
@@ -90,7 +90,7 @@ static Handle_Geom_Curve mkBezierCurve(const Standard_Integer nPoles,
return new Geom_BezierCurve (aPoles);
}
-static Handle_Geom_Curve mkPBSplineCurve(const Standard_Integer nPoles,
+static Handle(Geom_Curve) mkPBSplineCurve(const Standard_Integer nPoles,
const Standard_Real theCoords[][3],
const Standard_Real aScale = 1,
const gp_XYZ& aShift = gp_XYZ(0,0,0))
@@ -111,7 +111,7 @@ static Handle_Geom_Curve mkPBSplineCurve(const Standard_Integer nPoles,
return new Geom_BSplineCurve (aPoles, aKnots, aMults, 3, Standard_True);
}
-static Handle_Geom2d_Curve mk2dBezierCurve(const Standard_Integer nPoles,
+static Handle(Geom2d_Curve) mk2dBezierCurve(const Standard_Integer nPoles,
const Standard_Real theCoords[][2],
const Standard_Real aScale = 1,
const gp_XY& aShift = gp_XY(0,0))
@@ -139,7 +139,7 @@ static TopoDS_Wire mkPolygonWire(const Standard_Integer nPoints,
return aPol.Wire();
}
-static Handle_Geom_Curve mkCurve1()
+static Handle(Geom_Curve) mkCurve1()
{
Standard_Real aCoords[][3] = {
{0,0,0},{0,0,10},{0,10,10},{0,10,20}
@@ -148,7 +148,7 @@ static Handle_Geom_Curve mkCurve1()
return mkBezierCurve (nPoles, aCoords);
}
-static Handle_Geom_Curve mkCurve2()
+static Handle(Geom_Curve) mkCurve2()
{
Standard_Real aCoords[][3] = {
{0,0,0},{10,0,0},{20,10,12},{25,30,20},{50,40,50}
@@ -157,7 +157,7 @@ static Handle_Geom_Curve mkCurve2()
return mkBezierCurve (nPoles, aCoords);
}
-static Handle_Geom_Curve mkCurve3()
+static Handle(Geom_Curve) mkCurve3()
{
Standard_Real aCoords[][3] = {
{50,40,50},{70,30,30},{90,20,20},{100,50,0}
@@ -166,7 +166,7 @@ static Handle_Geom_Curve mkCurve3()
return mkBezierCurve (nPoles, aCoords);
}
-static Handle_Geom2d_Curve mk2dCurve1()
+static Handle(Geom2d_Curve) mk2dCurve1()
{
Standard_Real aCoords[][2] = {
{0,0},{0.3,0},{0.1,0.5},{0.3,0.6},{0.6,0.5}
@@ -175,7 +175,7 @@ static Handle_Geom2d_Curve mk2dCurve1()
return mk2dBezierCurve (nPoles, aCoords);
}
-static Handle_Geom_Surface mkSurface1()
+static Handle(Geom_Surface) mkSurface1()
{
Standard_Real aCoords[3][3][3] = {
{{-10,-10,-30},{-10,50,40},{-10,70,-20}},
@@ -292,9 +292,9 @@ static TopoDS_Wire mkWire9()
}
-Handle_AIS_InteractiveObject Sweep_Presentation::drawCurveOnSurface
- (const Handle_Geom2d_Curve& aC2d,
- const Handle_Geom_Surface& aSurf,
+Handle(AIS_InteractiveObject) Sweep_Presentation::drawCurveOnSurface
+ (const Handle(Geom2d_Curve)& aC2d,
+ const Handle(Geom_Surface)& aSurf,
const Quantity_Color& aColor)
{
Handle(Geom2dAdaptor_HCurve) aHC = new Geom2dAdaptor_HCurve(aC2d);
diff --git a/samples/mfc/occtdemo/Sweep/Sweep_Presentation.h b/samples/mfc/occtdemo/Sweep/Sweep_Presentation.h
index 349b3f1c93..8cf9c997af 100755
--- a/samples/mfc/occtdemo/Sweep/Sweep_Presentation.h
+++ b/samples/mfc/occtdemo/Sweep/Sweep_Presentation.h
@@ -10,8 +10,8 @@
#endif // _MSC_VER > 1000
#include
-class Handle_Geom2d_Curve;
-class Handle_Geom_Surface;
+class Geom2d_Curve;
+class Geom_Surface;
class Sweep_Presentation : public OCCDemo_Presentation
{
@@ -24,9 +24,9 @@ public:
virtual void DoSample();
// one phase of iterations
- Handle_AIS_InteractiveObject drawCurveOnSurface
- (const Handle_Geom2d_Curve& aC2d,
- const Handle_Geom_Surface& aSurf,
+ Handle(AIS_InteractiveObject) drawCurveOnSurface
+ (const Handle(Geom2d_Curve)& aC2d,
+ const Handle(Geom_Surface)& aSurf,
const Quantity_Color& aColor);
private:
diff --git a/samples/mfc/occtdemo/Tesselate/Tesselate_Presentation.cpp b/samples/mfc/occtdemo/Tesselate/Tesselate_Presentation.cpp
index 40c16ae241..dbb6eb931b 100755
--- a/samples/mfc/occtdemo/Tesselate/Tesselate_Presentation.cpp
+++ b/samples/mfc/occtdemo/Tesselate/Tesselate_Presentation.cpp
@@ -123,7 +123,7 @@ void Tesselate_Presentation::tesselateShape(const TopoDS_Shape& aShape)
" TopLoc_Location aLocation;" EOL EOL
" // takes the triangulation of the face aFace:" EOL
- " Handle_Poly_Triangulation aTr = BRep_Tool::Triangulation(aFace,aLocation);" EOL EOL
+ " Handle(Poly_Triangulation) aTr = BRep_Tool::Triangulation(aFace,aLocation);" EOL EOL
" if(!aTr.IsNull()) // if this triangulation is not NULL" EOL
" { " EOL
@@ -161,7 +161,7 @@ void Tesselate_Presentation::tesselateShape(const TopoDS_Shape& aShape)
" if(!aEdge.IsNull()) // if this edge is not NULL" EOL
" {" EOL
" // takes the polygon associated to the edge aEdge:" EOL
- " Handle_Poly_PolygonOnTriangulation aPol = " EOL
+ " Handle(Poly_PolygonOnTriangulation) aPol = " EOL
" BRep_Tool::PolygonOnTriangulation(aEdge,aTr,aEdge.Location());" EOL EOL
" if(!aPol.IsNull()) // if this polygon is not NULL" EOL
@@ -197,7 +197,7 @@ void Tesselate_Presentation::tesselateShape(const TopoDS_Shape& aShape)
Standard_Integer aNumOfNodes = 0;
Standard_Integer aNumOfTriangles = 0;
- Handle_AIS_InteractiveObject aShowEdge,aShowFace,aShowShape;
+ Handle(AIS_InteractiveObject) aShowEdge,aShowFace,aShowShape;
TopExp_Explorer aExpFace,aExpEdge;
@@ -208,7 +208,7 @@ void Tesselate_Presentation::tesselateShape(const TopoDS_Shape& aShape)
TopoDS_Face aFace = TopoDS::Face(aExpFace.Current());
TopLoc_Location aLocation;
- Handle_Poly_Triangulation aTr = BRep_Tool::Triangulation(aFace,aLocation);
+ Handle(Poly_Triangulation) aTr = BRep_Tool::Triangulation(aFace,aLocation);
if(!aTr.IsNull())
{
@@ -232,7 +232,7 @@ void Tesselate_Presentation::tesselateShape(const TopoDS_Shape& aShape)
if(!aEdge.IsNull())
{
- Handle_Poly_PolygonOnTriangulation aPol =
+ Handle(Poly_PolygonOnTriangulation) aPol =
BRep_Tool::PolygonOnTriangulation(aEdge,aTr,aEdge.Location());
if(!aPol.IsNull())
diff --git a/samples/mfc/occtdemo/Textures/Textures_Presentation.cpp b/samples/mfc/occtdemo/Textures/Textures_Presentation.cpp
index ccbbe01023..c43f9e1232 100755
--- a/samples/mfc/occtdemo/Textures/Textures_Presentation.cpp
+++ b/samples/mfc/occtdemo/Textures/Textures_Presentation.cpp
@@ -83,7 +83,7 @@ void Textures_Presentation::Init()
{
// initialize v3d_view so it displays textures well
getViewer()->InitActiveViews();
- Handle_V3d_View aView = getViewer()->ActiveView();
+ Handle(V3d_View) aView = getViewer()->ActiveView();
aView->SetSurfaceDetail(V3d_TEX_ALL);
aView->SetSize(ZVIEW_SIZE);
@@ -95,7 +95,7 @@ void Textures_Presentation::Init()
" // aShape = ..." EOL
"" EOL
" // create a textured presentation object for aShape" EOL
- " Handle_AIS_TexturedShape aTShape = new AIS_TexturedShape(aShape);" EOL
+ " Handle(AIS_TexturedShape) aTShape = new AIS_TexturedShape(aShape);" EOL
"" EOL
" TCollection_AsciiString aTFileName;" EOL
"" EOL
@@ -142,12 +142,12 @@ void Textures_Presentation::Init()
//================================================================
void Textures_Presentation::lightsOnOff(Standard_Boolean isOn)
{
- static Handle_V3d_Light aLight1 = new V3d_DirectionalLight(getViewer(), V3d_XnegYposZneg);
- static Handle_V3d_Light aLight2 = new V3d_DirectionalLight(getViewer(), V3d_XnegYnegZpos);
- static Handle_V3d_Light aLight3 = new V3d_DirectionalLight(getViewer(), V3d_XposYnegZpos);
- static Handle_V3d_Light aLight4 = new V3d_DirectionalLight(getViewer(), V3d_XnegYnegZneg);
- static Handle_V3d_Light aLight5 = new V3d_DirectionalLight(getViewer(), V3d_XnegYposZpos);
- static Handle_V3d_Light aLight6 = new V3d_DirectionalLight(getViewer(), V3d_XposYposZpos);
+ static Handle(V3d_Light) aLight1 = new V3d_DirectionalLight(getViewer(), V3d_XnegYposZneg);
+ static Handle(V3d_Light) aLight2 = new V3d_DirectionalLight(getViewer(), V3d_XnegYnegZpos);
+ static Handle(V3d_Light) aLight3 = new V3d_DirectionalLight(getViewer(), V3d_XposYnegZpos);
+ static Handle(V3d_Light) aLight4 = new V3d_DirectionalLight(getViewer(), V3d_XnegYnegZneg);
+ static Handle(V3d_Light) aLight5 = new V3d_DirectionalLight(getViewer(), V3d_XnegYposZpos);
+ static Handle(V3d_Light) aLight6 = new V3d_DirectionalLight(getViewer(), V3d_XposYposZpos);
if (isOn)
{
@@ -184,7 +184,7 @@ Standard_Boolean Textures_Presentation::displayTextured(const TopoDS_Shape& aSha
Standard_Integer nRepeat)
{
// create a textured presentation object for aShape
- Handle_AIS_TexturedShape aTShape = new AIS_TexturedShape(aShape);
+ Handle(AIS_TexturedShape) aTShape = new AIS_TexturedShape(aShape);
// load texture from file if it is not an integer value
// integer value indicates a number of texture in predefined textures enumeration
@@ -209,7 +209,7 @@ Standard_Boolean Textures_Presentation::displayTextured(const TopoDS_Shape& aSha
{
lightsOnOff(Standard_False);
- Handle_AIS_Shape aAisShape = drawShape(aShape/*, Quantity_NOC_WHITE*/);
+ Handle(AIS_Shape) aAisShape = drawShape(aShape/*, Quantity_NOC_WHITE*/);
if (WAIT_A_SECOND) return Standard_False;
getAISContext()->Erase(aAisShape, Standard_False);
}
@@ -391,7 +391,7 @@ void Textures_Presentation::samplePredefTexture2()
Standard_Real aXStep = 250, aYStep = 250;
Standard_Real aXBound = -450, aYBound = -300;
- Handle_Geom_BSplineSurface aSurface =
+ Handle(Geom_BSplineSurface) aSurface =
GeomAPI_PointsToBSplineSurface(aZPoints,aXBound,aXStep,aYBound,aYStep,3,8);
TopoDS_Face aShape = BRepBuilderAPI_MakeFace(aSurface);
diff --git a/samples/mfc/occtdemo/TexturesExt/TexturesExt_Presentation.cpp b/samples/mfc/occtdemo/TexturesExt/TexturesExt_Presentation.cpp
index 9472ae57dd..d9dcf5504b 100755
--- a/samples/mfc/occtdemo/TexturesExt/TexturesExt_Presentation.cpp
+++ b/samples/mfc/occtdemo/TexturesExt/TexturesExt_Presentation.cpp
@@ -70,7 +70,7 @@ void TexturesExt_Presentation::Init()
{
// initialize v3d_view so it displays TexturesExt well
getViewer()->InitActiveViews();
- Handle_V3d_View aView = getViewer()->ActiveView();
+ Handle(V3d_View) aView = getViewer()->ActiveView();
aView->SetSurfaceDetail(V3d_TEX_ALL);
aView->SetSize(ZVIEW_SIZE);
@@ -82,7 +82,7 @@ void TexturesExt_Presentation::Init()
" // aShape = ..." EOL
"" EOL
" // create a textured presentation object for aShape" EOL
- " Handle_AIS_TexturedShape aTShape = new AIS_TexturedShape(aShape);" EOL
+ " Handle(AIS_TexturedShape) aTShape = new AIS_TexturedShape(aShape);" EOL
"" EOL
" TCollection_AsciiString aTFileName;" EOL
"" EOL
@@ -124,7 +124,7 @@ void TexturesExt_Presentation::Init()
// a predefined texture from Graphic3d_NameOfTexture2D with number = this value
// is loaded.
//================================================================
-Handle_AIS_TexturedShape TexturesExt_Presentation::Texturize(const TopoDS_Shape& aShape,
+Handle(AIS_TexturedShape) TexturesExt_Presentation::Texturize(const TopoDS_Shape& aShape,
TCollection_AsciiString aTFileName,
Standard_Real toScaleU,
Standard_Real toScaleV,
@@ -134,7 +134,7 @@ Handle_AIS_TexturedShape TexturesExt_Presentation::Texturize(const TopoDS_Shape&
Standard_Real originV)
{
// create a textured presentation object for aShape
- Handle_AIS_TexturedShape aTShape = new AIS_TexturedShape(aShape);
+ Handle(AIS_TexturedShape) aTShape = new AIS_TexturedShape(aShape);
// load texture from file if it is not an integer value
// integer value indicates a number of texture in predefined TexturesExt enumeration
@@ -190,12 +190,12 @@ Standard_Boolean TexturesExt_Presentation::loadShape(TopoDS_Shape& aShape,
//================================================================
void TexturesExt_Presentation::lightsOnOff(Standard_Boolean isOn)
{
- static Handle_V3d_Light aLight1 = new V3d_DirectionalLight(getViewer(), V3d_XnegYposZneg);
- static Handle_V3d_Light aLight2 = new V3d_DirectionalLight(getViewer(), V3d_XnegYnegZpos);
- static Handle_V3d_Light aLight3 = new V3d_DirectionalLight(getViewer(), V3d_XposYnegZpos);
- static Handle_V3d_Light aLight4 = new V3d_DirectionalLight(getViewer(), V3d_XnegYnegZneg);
- static Handle_V3d_Light aLight5 = new V3d_DirectionalLight(getViewer(), V3d_XnegYposZpos);
- static Handle_V3d_Light aLight6 = new V3d_DirectionalLight(getViewer(), V3d_XposYposZpos);
+ static Handle(V3d_Light) aLight1 = new V3d_DirectionalLight(getViewer(), V3d_XnegYposZneg);
+ static Handle(V3d_Light) aLight2 = new V3d_DirectionalLight(getViewer(), V3d_XnegYnegZpos);
+ static Handle(V3d_Light) aLight3 = new V3d_DirectionalLight(getViewer(), V3d_XposYnegZpos);
+ static Handle(V3d_Light) aLight4 = new V3d_DirectionalLight(getViewer(), V3d_XnegYnegZneg);
+ static Handle(V3d_Light) aLight5 = new V3d_DirectionalLight(getViewer(), V3d_XnegYposZpos);
+ static Handle(V3d_Light) aLight6 = new V3d_DirectionalLight(getViewer(), V3d_XposYposZpos);
if (isOn)
{
@@ -238,14 +238,14 @@ void TexturesExt_Presentation::sampleBottle()
TopExp::MapShapes(aShape, TopAbs_FACE, aFaces);
// display original shape in shaded display mode
- Handle_AIS_Shape aShapeIO = drawShape(aShape, Graphic3d_NOM_BRASS, Standard_False);
+ Handle(AIS_Shape) aShapeIO = drawShape(aShape, Graphic3d_NOM_BRASS, Standard_False);
getAISContext()->SetDisplayMode(aShapeIO, AIS_Shaded, Standard_False);
DISP(aShapeIO);
- Handle_AIS_TexturedShape aTFace1 = Texturize(aFaces(16), "carrelage1.gif", 1, 1, 3, 2);
+ Handle(AIS_TexturedShape) aTFace1 = Texturize(aFaces(16), "carrelage1.gif", 1, 1, 3, 2);
DISP(aTFace1);
- Handle_AIS_TexturedShape aTFace2 = Texturize(aFaces(21), "carrelage1.gif", 1, 1, 3, 2);
+ Handle(AIS_TexturedShape) aTFace2 = Texturize(aFaces(21), "carrelage1.gif", 1, 1, 3, 2);
DISP(aTFace2);
getViewer()->Update();
@@ -267,7 +267,7 @@ void TexturesExt_Presentation::sampleTerrain()
TopExp::MapShapes(aShape, TopAbs_FACE, aFaces);
// TopLoc_Location aLoc;
-// Handle_Geom_Surface aSur = BRep_Tool::Surface(TopoDS::Face(aFaces(1)), aLoc);
+// Handle(Geom_Surface) aSur = BRep_Tool::Surface(TopoDS::Face(aFaces(1)), aLoc);
// Standard_Real u1,u2,v1,v2;
// aSur->Bounds(u1,u2,v1,v2);
// gp_Pnt aPnt = aSur->Value(u1, v1);
diff --git a/samples/mfc/occtdemo/TexturesExt/TexturesExt_Presentation.h b/samples/mfc/occtdemo/TexturesExt/TexturesExt_Presentation.h
index 882d2ee08f..12c60462e3 100755
--- a/samples/mfc/occtdemo/TexturesExt/TexturesExt_Presentation.h
+++ b/samples/mfc/occtdemo/TexturesExt/TexturesExt_Presentation.h
@@ -12,7 +12,7 @@
#include
class TopoDS_Shape;
class TCollection_AsciiString;
-class Handle_AIS_TexturedShape;
+class AIS_TexturedShape;
class TexturesExt_Presentation : public OCCDemo_Presentation
{
@@ -32,7 +32,7 @@ private:
// filename can also be an integer value ("2", "5", etc.), in this case
// a predefined texture from Graphic3d_NameOfTexture2D with number = this value
// is loaded.
- Handle_AIS_TexturedShape Texturize(
+ Handle(AIS_TexturedShape) Texturize(
const TopoDS_Shape& aShape, TCollection_AsciiString aTFileName,
Standard_Real toScaleU=1.0, Standard_Real toScaleV=1.0,
Standard_Real toRepeatU=1.0, Standard_Real toRepeatV=1.0,
diff --git a/samples/mfc/occtdemo/ThruSections/ThruSections_Presentation.cpp b/samples/mfc/occtdemo/ThruSections/ThruSections_Presentation.cpp
index cec0e65912..381ea4d9a7 100755
--- a/samples/mfc/occtdemo/ThruSections/ThruSections_Presentation.cpp
+++ b/samples/mfc/occtdemo/ThruSections/ThruSections_Presentation.cpp
@@ -77,7 +77,7 @@ void ThruSections_Presentation::DoSample()
// purpose:
//////////////////////////////////////////////////////////////////////
-static Handle_Geom_BSplineCurve CreateCurve(Standard_Real aCoords[][3],Standard_Integer nPoles)
+static Handle(Geom_BSplineCurve) CreateCurve(Standard_Real aCoords[][3],Standard_Integer nPoles)
{
TColgp_Array1OfPnt aCurvePoint (1, nPoles);
@@ -192,7 +192,7 @@ void ThruSections_Presentation::sample1()
//====================================================================
- Handle_AIS_InteractiveObject aShow1,aShow2,aShowWire;
+ Handle(AIS_InteractiveObject) aShow1,aShow2,aShowWire;
// this data used for building a shape through sections:
Standard_Boolean IsSolid,IsRuled;
@@ -374,7 +374,7 @@ void ThruSections_Presentation::sample2()
//====================================================================
- Handle_AIS_InteractiveObject aShow1,aShow2,aShowWire1,aShowWire2,aShowWire3;
+ Handle(AIS_InteractiveObject) aShow1,aShow2,aShowWire1,aShowWire2,aShowWire3;
// this data used for building a shape through sections:
const Standard_Boolean IsSolid = Standard_False;
@@ -403,8 +403,8 @@ void ThruSections_Presentation::sample2()
Standard_Integer aSize3 = sizeof(aCoords3)/(sizeof(Standard_Real)*3);
// creates curves:
- Handle_Geom_BSplineCurve aCurve1 = CreateCurve(aCoords1,aSize1);
- Handle_Geom_BSplineCurve aCurve2 = CreateCurve(aCoords2,aSize2);
+ Handle(Geom_BSplineCurve) aCurve1 = CreateCurve(aCoords1,aSize1);
+ Handle(Geom_BSplineCurve) aCurve2 = CreateCurve(aCoords2,aSize2);
// creates wires based on the curves:
TopoDS_Wire aW1 = BRepBuilderAPI_MakeWire(BRepBuilderAPI_MakeEdge(aCurve1));
diff --git a/samples/mfc/occtdemo/ThruSections/ThruSections_Presentation.h b/samples/mfc/occtdemo/ThruSections/ThruSections_Presentation.h
index d81ab0c82e..38416caa31 100755
--- a/samples/mfc/occtdemo/ThruSections/ThruSections_Presentation.h
+++ b/samples/mfc/occtdemo/ThruSections/ThruSections_Presentation.h
@@ -10,7 +10,7 @@
#endif // _MSC_VER > 1000
#include
-class TopTools_SequenceOfShape;
+#include
//class TCollection_AsciiString;
class ThruSections_Presentation : public OCCDemo_Presentation
diff --git a/samples/mfc/occtdemo/TopLProps/TopLProps_Presentation.cpp b/samples/mfc/occtdemo/TopLProps/TopLProps_Presentation.cpp
index dd39cc8036..bcd14d652f 100755
--- a/samples/mfc/occtdemo/TopLProps/TopLProps_Presentation.cpp
+++ b/samples/mfc/occtdemo/TopLProps/TopLProps_Presentation.cpp
@@ -126,10 +126,10 @@ static TopoDS_Shape CreateRevolShape()
gp_Ax1 anAxis = gp_Ax1(gp_Pnt(0,0,0),gp::DY());
GC_MakeSegment aSegment(gp_Pnt(0,-8*SCALE,0),gp_Pnt(0,-8*SCALE,2*SCALE));
- Handle_Geom_TrimmedCurve aLine = aSegment.Value();
- Handle_Geom_SurfaceOfRevolution aSurface1 = new Geom_SurfaceOfRevolution(aLine, anAxis);
- Handle_Geom_SurfaceOfRevolution aSurface2 = new Geom_SurfaceOfRevolution(aCurve1, anAxis);
- Handle_Geom_SurfaceOfRevolution aSurface3 = new Geom_SurfaceOfRevolution(aCurve2, anAxis);
+ Handle(Geom_TrimmedCurve) aLine = aSegment.Value();
+ Handle(Geom_SurfaceOfRevolution) aSurface1 = new Geom_SurfaceOfRevolution(aLine, anAxis);
+ Handle(Geom_SurfaceOfRevolution) aSurface2 = new Geom_SurfaceOfRevolution(aCurve1, anAxis);
+ Handle(Geom_SurfaceOfRevolution) aSurface3 = new Geom_SurfaceOfRevolution(aCurve2, anAxis);
BRep_Builder aBuilder;
TopoDS_Compound aShape;
@@ -214,10 +214,10 @@ static TopoDS_Shape CreateBSplnShape()
GeomAPI_PointsToBSplineSurface aPTBS;
aPTBS.Init(aZPoints1,aX0,aXStep,aY0,aYStep,3,10,GeomAbs_C3,0.3*SCALE);
- Handle_Geom_BSplineSurface aSurface1 = aPTBS.Surface();
+ Handle(Geom_BSplineSurface) aSurface1 = aPTBS.Surface();
aPTBS.Init(aZPoints2,aX0,aXStep,aY0,aYStep,3,10,GeomAbs_C3,0.3*SCALE);
- Handle_Geom_BSplineSurface aSurface2 = aPTBS.Surface();
+ Handle(Geom_BSplineSurface) aSurface2 = aPTBS.Surface();
TopoDS_Face aFace1,aFace2;
aFace1 = BRepBuilderAPI_MakeFace (aSurface1);
@@ -251,7 +251,7 @@ void TopLProps_Presentation::sample1()
if (aEdge.IsNull()) return;
//show:
- Handle_AIS_InteractiveObject aShowShape = drawShape(aShape);
+ Handle(AIS_InteractiveObject) aShowShape = drawShape(aShape);
if(WAIT_A_SECOND) return;
drawShape(aEdge,Quantity_NOC_RED);
if(WAIT_A_SECOND) return;
@@ -281,9 +281,9 @@ void TopLProps_Presentation::sample2()
if (aFace.IsNull()) return;
//show:
- Handle_AIS_InteractiveObject aShowShape = drawShape(aShape);
+ Handle(AIS_InteractiveObject) aShowShape = drawShape(aShape);
if(WAIT_A_SECOND) return;
- Handle_AIS_InteractiveObject aShowFace = drawShape(aFace,Graphic3d_NOM_BRASS,Standard_False);
+ Handle(AIS_InteractiveObject) aShowFace = drawShape(aFace,Graphic3d_NOM_BRASS,Standard_False);
getAISContext()->SetDisplayMode(aShowFace,AIS_WireFrame);
getAISContext()->Display(aShowFace);
if(WAIT_A_SECOND) return;
@@ -324,7 +324,7 @@ void TopLProps_Presentation::sample3()
Standard_Integer aNbPoints = sizeof(aPoints)/sizeof(Standard_Real);
//show:
- Handle_AIS_InteractiveObject aShowShape = drawShape(aShape);
+ Handle(AIS_InteractiveObject) aShowShape = drawShape(aShape);
if(WAIT_A_SECOND) return;
drawShape(aEdge,Quantity_NOC_RED);
@@ -367,9 +367,9 @@ void TopLProps_Presentation::sample4()
Standard_Integer aNbPoints = sizeof(aPoints)/(sizeof(Standard_Real)*2);
//show:
- Handle_AIS_InteractiveObject aShowShape = drawShape(aShape);
+ Handle(AIS_InteractiveObject) aShowShape = drawShape(aShape);
if(WAIT_A_SECOND) return;
- Handle_AIS_InteractiveObject aShowFace = drawShape(aFace,Graphic3d_NOM_BRASS,Standard_False);
+ Handle(AIS_InteractiveObject) aShowFace = drawShape(aFace,Graphic3d_NOM_BRASS,Standard_False);
getAISContext()->SetDisplayMode(aShowFace,AIS_WireFrame);
getAISContext()->Display(aShowFace);
if(WAIT_A_SECOND) return;
@@ -439,7 +439,7 @@ void TopLProps_Presentation::showEdgeLProps(TopoDS_Edge& theEdge,
setResultText (aText.ToCString());
BRepAdaptor_Curve anAdapCurve (theEdge) ;
- Handle_AIS_InteractiveObject aObjs[7];
+ Handle(AIS_InteractiveObject) aObjs[7];
Standard_Integer maxOrder = 3;
Standard_Real aResol = gp::Resolution();
BRepLProp_CLProps aLProps (anAdapCurve,maxOrder,aResol);
diff --git a/samples/mfc/standard/01_Geometry/src/GeoAlgo_Sol.hxx b/samples/mfc/standard/01_Geometry/src/GeoAlgo_Sol.hxx
index 11de70ac81..16d57a2d63 100755
--- a/samples/mfc/standard/01_Geometry/src/GeoAlgo_Sol.hxx
+++ b/samples/mfc/standard/01_Geometry/src/GeoAlgo_Sol.hxx
@@ -44,18 +44,18 @@ public:
Standard_EXPORT GeoAlgo_Sol(const Standard_CString aGroundName);
Standard_EXPORT void Build(const Standard_CString aGroundName) ;
Standard_EXPORT void Build(const TColgp_SequenceOfXYZ& aSeqofPoints) ;
- Standard_EXPORT Handle_Geom_BSplineSurface Surface() const;
+ Standard_EXPORT Handle(Geom_BSplineSurface) Surface() const;
Standard_EXPORT Standard_Boolean IsDone() const;
private:
// Methods PRIVATE
//
-Standard_EXPORT Handle_Geom_BSplineSurface Read(const Standard_CString aGroundName) ;
+Standard_EXPORT Handle(Geom_BSplineSurface) Read(const Standard_CString aGroundName) ;
// Fields PRIVATE
//
-Handle_Geom_BSplineSurface myGround;
+Handle(Geom_BSplineSurface) myGround;
Standard_Boolean myIsDone;
};
diff --git a/samples/mfc/standard/01_Geometry/src/GeometryDoc.cpp b/samples/mfc/standard/01_Geometry/src/GeometryDoc.cpp
index 715a76636a..8d4514d9a9 100755
--- a/samples/mfc/standard/01_Geometry/src/GeometryDoc.cpp
+++ b/samples/mfc/standard/01_Geometry/src/GeometryDoc.cpp
@@ -1119,7 +1119,7 @@ void CGeometryDoc::OnCreateSol()
TopoDS_Face aface = BRepBuilderAPI_MakeFace(GeomSol, Precision::Confusion());
if (!BRepAlgo::IsValid(aface))
MessageBoxW (AfxGetApp()->m_pMainWnd->m_hWnd, L"Error : The plate surface is not valid!", L"CasCade Error", MB_ICONERROR);
- Handle_AIS_Shape anAISShape=new AIS_Shape(aface);
+ Handle(AIS_Shape) anAISShape=new AIS_Shape(aface);
myAISContext->Display(anAISShape, Standard_False);
Fit();
}
@@ -1211,7 +1211,7 @@ void CGeometryDoc::simplify(const TopoDS_Shape& aShape)
" TopLoc_Location aLocation;\n"
"\n"
" // takes the triangulation of the face aFace\n"
- " Handle_Poly_Triangulation aTr = BRep_Tool::Triangulation(aFace,aLocation);\n"
+ " Handle(Poly_Triangulation) aTr = BRep_Tool::Triangulation(aFace,aLocation);\n"
"\n"
" if(!aTr.IsNull())\n"
" { \n"
@@ -1337,7 +1337,7 @@ void CGeometryDoc::simplify(const TopoDS_Shape& aShape)
" TopoDS_Face aFace;\n"
" B.MakeFace(aFace, aSurf, Precision::Confusion());\n"
" B.Add(aFace, aWire);\n"
- " Handle_ShapeFix_Shape sfs = new ShapeFix_Shape(aFace);\n"
+ " Handle(ShapeFix_Shape) sfs = new ShapeFix_Shape(aFace);\n"
" sfs->Perform();\n"
" TopoDS_Shape aFixedFace = sfs->Shape();\n"
" if (aFixedFace.IsNull()) \n"
@@ -1364,7 +1364,7 @@ void CGeometryDoc::simplify(const TopoDS_Shape& aShape)
TopLoc_Location aLocation;
// takes the triangulation of the face aFace
- Handle_Poly_Triangulation aTr = BRep_Tool::Triangulation(aFace,aLocation);
+ Handle(Poly_Triangulation) aTr = BRep_Tool::Triangulation(aFace,aLocation);
if(!aTr.IsNull())
{
@@ -1492,14 +1492,14 @@ void CGeometryDoc::simplify(const TopoDS_Shape& aShape)
TopoDS_Face aFace;
B.MakeFace(aFace, aSurf, Precision::Confusion());
B.Add(aFace, aWire);
- Handle_ShapeFix_Shape sfs = new ShapeFix_Shape(aFace);
+ Handle(ShapeFix_Shape) sfs = new ShapeFix_Shape(aFace);
sfs->Perform();
TopoDS_Shape aFixedFace = sfs->Shape();
if (aFixedFace.IsNull())
return;
// output surface, make it half transparent
- Handle_AIS_InteractiveObject aSurfIO = drawSurface(
+ Handle(AIS_InteractiveObject) aSurfIO = drawSurface(
aSurf, Quantity_NOC_LEMONCHIFFON3, Standard_False);
aSurfIO->SetTransparency(0.5);
myAISContext->Display(aSurfIO,Standard_False);
@@ -1517,8 +1517,8 @@ void CGeometryDoc::simplify(const TopoDS_Shape& aShape)
drawShape(aFixedFace);
}
-Handle_AIS_InteractiveObject CGeometryDoc::drawSurface
- (const Handle_Geom_Surface& theSurface,
+Handle(AIS_InteractiveObject) CGeometryDoc::drawSurface
+ (const Handle(Geom_Surface)& theSurface,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay)
{
@@ -1529,7 +1529,7 @@ Handle_AIS_InteractiveObject CGeometryDoc::drawSurface
fixParam(v1);
fixParam(v2);
- Handle_AIS_Shape aGraphicSurface =
+ Handle(AIS_Shape) aGraphicSurface =
new AIS_Shape(BRepBuilderAPI_MakeFace (theSurface, u1, u2, v1, v2, Precision::Confusion()));
myAISContext->SetMaterial(aGraphicSurface, Graphic3d_NOM_PLASTIC, toDisplay);
@@ -1569,7 +1569,7 @@ Standard_Boolean CGeometryDoc::WaitForInput (unsigned long aMilliSeconds)
return Standard_False;
}
-Handle_AIS_Point CGeometryDoc::drawPoint
+Handle(AIS_Point) CGeometryDoc::drawPoint
(const gp_Pnt& aPnt,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay)
@@ -1586,12 +1586,12 @@ Handle_AIS_Point CGeometryDoc::drawPoint
return aGraphicPoint;
}
-Handle_AIS_Shape CGeometryDoc::drawShape
+Handle(AIS_Shape) CGeometryDoc::drawShape
(const TopoDS_Shape& theShape,
const Graphic3d_NameOfMaterial theMaterial,
const Standard_Boolean toDisplay)
{
- Handle_AIS_Shape aGraphicShape = new AIS_Shape(theShape);
+ Handle(AIS_Shape) aGraphicShape = new AIS_Shape(theShape);
myAISContext->SetMaterial(aGraphicShape, theMaterial, toDisplay);
if (toDisplay)
diff --git a/samples/mfc/standard/01_Geometry/src/GeometryDoc.h b/samples/mfc/standard/01_Geometry/src/GeometryDoc.h
index 3d19cc75ee..d2f2a7f64c 100755
--- a/samples/mfc/standard/01_Geometry/src/GeometryDoc.h
+++ b/samples/mfc/standard/01_Geometry/src/GeometryDoc.h
@@ -30,26 +30,26 @@ public:
void DragEvent2D (const Standard_Integer x ,
const Standard_Integer y ,
const Standard_Integer TheState,
- const Handle_V3d_View& aView );
+ const Handle(V3d_View)& aView );
void InputEvent2D (const Standard_Integer x ,
const Standard_Integer y ,
- const Handle_V3d_View& aView );
+ const Handle(V3d_View)& aView );
void MoveEvent2D (const Standard_Integer x ,
const Standard_Integer y ,
- const Handle_V3d_View& aView );
+ const Handle(V3d_View)& aView );
void ShiftMoveEvent2D (const Standard_Integer x ,
const Standard_Integer y ,
- const Handle_V3d_View& aView );
+ const Handle(V3d_View)& aView );
void ShiftDragEvent2D (const Standard_Integer x ,
const Standard_Integer y ,
const Standard_Integer TheState,
- const Handle_V3d_View& aView );
+ const Handle(V3d_View)& aView );
void ShiftInputEvent2D (const Standard_Integer x ,
const Standard_Integer y ,
- const Handle_V3d_View& aView );
+ const Handle(V3d_View)& aView );
void Popup2D (const Standard_Integer x ,
const Standard_Integer y ,
- const Handle_V3d_View& aView );
+ const Handle(V3d_View)& aView );
//-------------------- 3D -------------------//
@@ -61,21 +61,21 @@ public:
const Standard_Integer theMouseY,
const Handle(V3d_View)& theView);
- Handle_AIS_InteractiveObject drawSurface
- (const Handle_Geom_Surface& theSurface,
+ Handle(AIS_InteractiveObject) drawSurface
+ (const Handle(Geom_Surface)& theSurface,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay);
Standard_Boolean WaitForInput (unsigned long aMilliSeconds);
// Waits for a user input or a period of time has been elapsed
- Handle_AIS_Point drawPoint (const gp_Pnt& thePnt,
+ Handle(AIS_Point) drawPoint (const gp_Pnt& thePnt,
const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_GREEN),
const Standard_Boolean toDisplay = Standard_True);
// creates a presentation of the given point
// and displays it in the viewer if toDisplay = Standard_True
- Handle_AIS_Shape drawShape (const TopoDS_Shape& theShape,
+ Handle(AIS_Shape) drawShape (const TopoDS_Shape& theShape,
const Graphic3d_NameOfMaterial theMaterial = Graphic3d_NOM_BRASS,
const Standard_Boolean toDisplay = Standard_True);
// creates a presentation of the given shape with the given material
@@ -224,16 +224,16 @@ public:
int Current;
void Minimize3D();
void Minimize2D();
- Handle_V3d_Viewer GetViewer2D() { return myViewer2D; };
- Handle_AIS_InteractiveContext& GetISessionContext() { return myAISContext2D; };
+ Handle(V3d_Viewer) GetViewer2D() { return myViewer2D; };
+ Handle(AIS_InteractiveContext)& GetISessionContext() { return myAISContext2D; };
BOOL FitMode;
public:
CResultDialog myCResultDialog;
private:
- Handle_V3d_Viewer myViewer2D;
- Handle_AIS_InteractiveContext myAISContext2D;
+ Handle(V3d_Viewer) myViewer2D;
+ Handle(AIS_InteractiveContext) myAISContext2D;
};
diff --git a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession2D_Curve.cpp b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession2D_Curve.cpp
index 853f5cb1b6..5f8bd1e5af 100755
--- a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession2D_Curve.cpp
+++ b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession2D_Curve.cpp
@@ -8,11 +8,10 @@
#include
#include
-IMPLEMENT_STANDARD_HANDLE(ISession2D_Curve,AIS_InteractiveObject)
IMPLEMENT_STANDARD_RTTIEXT(ISession2D_Curve,AIS_InteractiveObject)
-ISession2D_Curve::ISession2D_Curve(const Handle_Geom2d_Curve aGeom2dCurve,
+ISession2D_Curve::ISession2D_Curve(const Handle(Geom2d_Curve) aGeom2dCurve,
const Aspect_TypeOfLine aTypeOfLine,
const Aspect_WidthOfLine aWidthOfLine,
const Standard_Integer aColorIndex)
diff --git a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession2D_Curve.h b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession2D_Curve.h
index 6db825d481..6fee7daa61 100755
--- a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession2D_Curve.h
+++ b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession2D_Curve.h
@@ -15,7 +15,7 @@
#include
#include
-class TColGeom2d_HSequenceOfCurve;
+#include
class PrsMgr_PresentationManager2d;
class Graphic2d_GraphicObject;
class SelectMgr_Selection;
@@ -33,7 +33,7 @@ public:
//
ISession2D_Curve
- (const Handle_Geom2d_Curve aGeom2dCurve,
+ (const Handle(Geom2d_Curve) aGeom2dCurve,
const Aspect_TypeOfLine aTypeOfline = Aspect_TOL_SOLID,
const Aspect_WidthOfLine aWidthOfLine = Aspect_WOL_MEDIUM,
const Standard_Integer aColorIndex = 4);
@@ -59,7 +59,7 @@ public:
inline Standard_Real GetDiscretisation() const;
inline void SetDiscretisation(const Standard_Real aNewDiscretisation) ;
- DEFINE_STANDARD_RTTI(ISession2D_Curve,AIS_InteractiveObject)
+ DEFINE_STANDARD_RTTIEXT(ISession2D_Curve,AIS_InteractiveObject)
private:
@@ -70,7 +70,7 @@ private:
// Fields PRIVATE
//
- Handle_Geom2d_Curve myGeom2dCurve;
+ Handle(Geom2d_Curve) myGeom2dCurve;
Aspect_TypeOfLine myTypeOfLine;
Aspect_WidthOfLine myWidthOfLine;
Standard_Integer myColorIndex;
diff --git a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Curve.cpp b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Curve.cpp
index 1a25812aa9..cd4d879469 100755
--- a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Curve.cpp
+++ b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Curve.cpp
@@ -7,7 +7,6 @@
#include "ISession_Curve.h"
#include
-IMPLEMENT_STANDARD_HANDLE(ISession_Curve,AIS_InteractiveObject)
IMPLEMENT_STANDARD_RTTIEXT(ISession_Curve,AIS_InteractiveObject)
#ifdef _DEBUG
diff --git a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Curve.h b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Curve.h
index 2d3b7ff183..0c95380a25 100755
--- a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Curve.h
+++ b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Curve.h
@@ -20,7 +20,7 @@ public:
ISession_Curve(Handle(Geom_Curve)& aCurve);
virtual ~ISession_Curve();
- DEFINE_STANDARD_RTTI(ISession_Curve,AIS_InteractiveObject)
+ DEFINE_STANDARD_RTTIEXT(ISession_Curve,AIS_InteractiveObject)
private:
diff --git a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Direction.cpp b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Direction.cpp
index fe4c5403b3..94b21f1d95 100755
--- a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Direction.cpp
+++ b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Direction.cpp
@@ -13,7 +13,6 @@
static char THIS_FILE[]=__FILE__;
#endif
-IMPLEMENT_STANDARD_HANDLE(ISession_Direction,AIS_InteractiveObject)
IMPLEMENT_STANDARD_RTTIEXT(ISession_Direction,AIS_InteractiveObject)
//////////////////////////////////////////////////////////////////////
diff --git a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Direction.h b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Direction.h
index 21689f0687..f31bc9d790 100755
--- a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Direction.h
+++ b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Direction.h
@@ -26,7 +26,7 @@ public:
ISession_Direction (const gp_Pnt2d& aPnt2d,const gp_Vec2d& aVec2d);
virtual ~ISession_Direction();
- DEFINE_STANDARD_RTTI(ISession_Direction,AIS_InteractiveObject)
+ DEFINE_STANDARD_RTTIEXT(ISession_Direction,AIS_InteractiveObject)
private:
diff --git a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Point.cpp b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Point.cpp
index d533b9cac8..4464c6652e 100755
--- a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Point.cpp
+++ b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Point.cpp
@@ -12,7 +12,7 @@
static char THIS_FILE[]=__FILE__;
//#define new DEBUG_NEW
#endif
-IMPLEMENT_STANDARD_HANDLE(ISession_Point,AIS_InteractiveObject)
+
IMPLEMENT_STANDARD_RTTIEXT(ISession_Point,AIS_InteractiveObject)
//////////////////////////////////////////////////////////////////////
diff --git a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Point.h b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Point.h
index f192687729..f12831a0ee 100755
--- a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Point.h
+++ b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Point.h
@@ -22,7 +22,7 @@ public:
ISession_Point(const gp_Pnt2d& aPoint,Standard_Real Elevation = 0);
ISession_Point(const gp_Pnt& aPoint);
virtual ~ISession_Point();
- DEFINE_STANDARD_RTTI(ISession_Point,AIS_InteractiveObject)
+ DEFINE_STANDARD_RTTIEXT(ISession_Point,AIS_InteractiveObject)
private :
diff --git a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Surface.cpp b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Surface.cpp
index 2c4a106340..73eb1da913 100755
--- a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Surface.cpp
+++ b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Surface.cpp
@@ -15,7 +15,7 @@
static char THIS_FILE[]=__FILE__;
//#define new DEBUG_NEW
#endif
-IMPLEMENT_STANDARD_HANDLE(ISession_Surface,AIS_InteractiveObject)
+
IMPLEMENT_STANDARD_RTTIEXT(ISession_Surface,AIS_InteractiveObject)
//////////////////////////////////////////////////////////////////////
diff --git a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Surface.h b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Surface.h
index 858a05df83..4cab1ba9fb 100755
--- a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Surface.h
+++ b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Surface.h
@@ -20,7 +20,7 @@ public:
ISession_Surface(Handle(Geom_Surface)& aSurface);
virtual ~ISession_Surface();
-DEFINE_STANDARD_RTTI(ISession_Surface,AIS_InteractiveObject)
+DEFINE_STANDARD_RTTIEXT(ISession_Surface,AIS_InteractiveObject)
private:
Standard_EXPORT virtual void Compute(const Handle(PrsMgr_PresentationManager3d)& aPresentationManager,const Handle(Prs3d_Presentation)& aPresentation,const Standard_Integer aMode = 0);
diff --git a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Text.cpp b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Text.cpp
index 80cfbfc527..f12e597dd2 100755
--- a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Text.cpp
+++ b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Text.cpp
@@ -11,7 +11,7 @@
static char THIS_FILE[]=__FILE__;
//#define new DEBUG_NEW
#endif
-IMPLEMENT_STANDARD_HANDLE(ISession_Text,AIS_InteractiveObject)
+
IMPLEMENT_STANDARD_RTTIEXT(ISession_Text,AIS_InteractiveObject)
//////////////////////////////////////////////////////////////////////
diff --git a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Text.h b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Text.h
index e5065b49ac..aa8fc5956a 100755
--- a/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Text.h
+++ b/samples/mfc/standard/01_Geometry/src/ISession2D/ISession_Text.h
@@ -69,7 +69,7 @@ inline Quantity_Factor GetScale() const;
inline void SetScale (const Quantity_Factor aNewScale) ;
-DEFINE_STANDARD_RTTI(ISession_Text,AIS_InteractiveObject)
+DEFINE_STANDARD_RTTIEXT(ISession_Text,AIS_InteractiveObject)
private:
diff --git a/samples/mfc/standard/02_Modeling/src/ISession_Direction.cpp b/samples/mfc/standard/02_Modeling/src/ISession_Direction.cpp
index 97a5c53709..6743c63f92 100755
--- a/samples/mfc/standard/02_Modeling/src/ISession_Direction.cpp
+++ b/samples/mfc/standard/02_Modeling/src/ISession_Direction.cpp
@@ -10,7 +10,6 @@
static char THIS_FILE[]=__FILE__;
#endif
-IMPLEMENT_STANDARD_HANDLE(ISession_Direction,AIS_InteractiveObject)
IMPLEMENT_STANDARD_RTTIEXT(ISession_Direction,AIS_InteractiveObject)
#include "DsgPrs_LengthPresentation.hxx"
diff --git a/samples/mfc/standard/02_Modeling/src/ISession_Direction.h b/samples/mfc/standard/02_Modeling/src/ISession_Direction.h
index 7142009bbb..00e13efcaa 100755
--- a/samples/mfc/standard/02_Modeling/src/ISession_Direction.h
+++ b/samples/mfc/standard/02_Modeling/src/ISession_Direction.h
@@ -24,7 +24,7 @@ public:
ISession_Direction(const gp_Pnt& aPnt,const gp_Pnt& aPnt2);
ISession_Direction(const gp_Pnt& aPnt,const gp_Vec& aVec);
- DEFINE_STANDARD_RTTI(ISession_Direction,AIS_InteractiveObject)
+ DEFINE_STANDARD_RTTIEXT(ISession_Direction,AIS_InteractiveObject)
private:
diff --git a/samples/mfc/standard/02_Modeling/src/ModelingDoc.cpp b/samples/mfc/standard/02_Modeling/src/ModelingDoc.cpp
index a6d03bd10e..9932bf0b68 100755
--- a/samples/mfc/standard/02_Modeling/src/ModelingDoc.cpp
+++ b/samples/mfc/standard/02_Modeling/src/ModelingDoc.cpp
@@ -4721,7 +4721,7 @@ void CModelingDoc::OnStopStop()
MessageBoxW (AfxGetApp()->m_pMainWnd->m_hWnd, L"Error : The plate face is not valid!", L"CasCade Error", MB_ICONERROR);
myAISContext->CloseLocalContext();
myState = -1;
- Handle_AIS_Shape anAISShape = new AIS_Shape(aface);
+ Handle(AIS_Shape) anAISShape = new AIS_Shape(aface);
myAISContext->SetColor(anAISShape,Quantity_NOC_AZURE);
myAISContext->SetMaterial(anAISShape,Graphic3d_NOM_SILVER);
myAISContext->SetDisplayMode(anAISShape,1);
@@ -5017,7 +5017,7 @@ void CModelingDoc::InputEvent(const Standard_Integer /*x*/,
MessageBoxW (AfxGetApp()->m_pMainWnd->m_hWnd, L"Error : The plate surface is not valid!!!", L"CasCade Error", MB_ICONERROR);
}
- Handle_AIS_Shape anAISShape=new AIS_Shape(theFace);
+ Handle(AIS_Shape) anAISShape=new AIS_Shape(theFace);
myAISContext->SetColor(anAISShape,Quantity_NOC_BLUE1);
myAISContext->SetMaterial(anAISShape,Graphic3d_NOM_SILVER);
myAISContext->SetDisplayMode(anAISShape,1);
diff --git a/samples/mfc/standard/03_Viewer2d/src/Viewer2dDoc.cpp b/samples/mfc/standard/03_Viewer2d/src/Viewer2dDoc.cpp
index 6a72e7f757..bc7165925c 100755
--- a/samples/mfc/standard/03_Viewer2d/src/Viewer2dDoc.cpp
+++ b/samples/mfc/standard/03_Viewer2d/src/Viewer2dDoc.cpp
@@ -195,7 +195,7 @@ void CViewer2dDoc::OnBUTTONTestLine()
TopoDS_Edge E4 = BRepBuilderAPI_MakeEdge(gp_Pnt(10*i,10*j+5,0.), gp_Pnt(10*i,10*j,0.));
TopoDS_Wire W = BRepBuilderAPI_MakeWire(E1,E2,E3,E4);
TopoDS_Face F = BRepBuilderAPI_MakeFace(W);
- Handle_AIS_Shape aRect = new AIS_Shape(F);
+ Handle(AIS_Shape) aRect = new AIS_Shape(F);
//set attributes of boundaries
Handle(Prs3d_Drawer) aDrawer = new Prs3d_Drawer();
Handle(Prs3d_LineAspect) aLineAttrib =
@@ -280,7 +280,7 @@ void CViewer2dDoc::OnBUTTONTestRect()
TopoDS_Edge E13 = BRepBuilderAPI_MakeEdge(gp_Pnt(42.5,93.,0.), gp_Pnt(0.,68.,0.));
TopoDS_Edge E14 = BRepBuilderAPI_MakeEdge(gp_Pnt(0.,68.,0.), gp_Pnt(40.,0.,0.));
TopoDS_Wire W1 = BRepBuilderAPI_MakeWire(E11,E12,E13,E14);
- Handle_AIS_Shape aRect1 = new AIS_Shape(W1);
+ Handle(AIS_Shape) aRect1 = new AIS_Shape(W1);
myAISContext->Display(aRect1);
myAISContext->SetColor(aRect1,Quantity_NOC_YELLOW);
@@ -290,7 +290,7 @@ void CViewer2dDoc::OnBUTTONTestRect()
TopoDS_Edge E23 = BRepBuilderAPI_MakeEdge(gp_Pnt(112.5,93.,0.), gp_Pnt(70.,68.,0.));
TopoDS_Edge E24 = BRepBuilderAPI_MakeEdge(gp_Pnt(70.,68.,0.), gp_Pnt(110.,0.,0.));
TopoDS_Wire W2 = BRepBuilderAPI_MakeWire(E21,E22,E23,E24);
- Handle_AIS_Shape aRect2 = new AIS_Shape(W2);
+ Handle(AIS_Shape) aRect2 = new AIS_Shape(W2);
myAISContext->Display(aRect2);
myAISContext->SetColor(aRect2,Quantity_NOC_YELLOW);
myAISContext->Activate(aRect2,2);
diff --git a/samples/mfc/standard/04_Viewer3d/src/DlgAttributes.cpp b/samples/mfc/standard/04_Viewer3d/src/DlgAttributes.cpp
index 35fa44a021..3c527fd5dd 100755
--- a/samples/mfc/standard/04_Viewer3d/src/DlgAttributes.cpp
+++ b/samples/mfc/standard/04_Viewer3d/src/DlgAttributes.cpp
@@ -76,7 +76,7 @@ END_MESSAGE_MAP()
void DlgAttributes::OnColor()
{
- Handle_AIS_InteractiveObject Current ;
+ Handle(AIS_InteractiveObject) Current ;
Quantity_Color CSFColor ;
COLORREF MSColor ;
diff --git a/samples/mfc/standard/04_Viewer3d/src/DlgAttributes.h b/samples/mfc/standard/04_Viewer3d/src/DlgAttributes.h
index 4ff3a247a6..8d8669325c 100755
--- a/samples/mfc/standard/04_Viewer3d/src/DlgAttributes.h
+++ b/samples/mfc/standard/04_Viewer3d/src/DlgAttributes.h
@@ -73,7 +73,7 @@ protected:
void SetMaterial (Graphic3d_NameOfMaterial Material);
private:
- Handle_AIS_InteractiveContext myAISContext;
+ Handle(AIS_InteractiveContext) myAISContext;
CResultDialog* myCResultDialog;
};
diff --git a/samples/mfc/standard/04_Viewer3d/src/ISession_Curve.cpp b/samples/mfc/standard/04_Viewer3d/src/ISession_Curve.cpp
index 97a4326955..839a7a7aee 100755
--- a/samples/mfc/standard/04_Viewer3d/src/ISession_Curve.cpp
+++ b/samples/mfc/standard/04_Viewer3d/src/ISession_Curve.cpp
@@ -10,7 +10,6 @@
#include
#include
-IMPLEMENT_STANDARD_HANDLE(ISession_Curve,AIS_InteractiveObject)
IMPLEMENT_STANDARD_RTTIEXT(ISession_Curve,AIS_InteractiveObject)
#ifdef _DEBUG
diff --git a/samples/mfc/standard/04_Viewer3d/src/ISession_Curve.h b/samples/mfc/standard/04_Viewer3d/src/ISession_Curve.h
index b89cba6b68..fa99e1e5ae 100755
--- a/samples/mfc/standard/04_Viewer3d/src/ISession_Curve.h
+++ b/samples/mfc/standard/04_Viewer3d/src/ISession_Curve.h
@@ -20,7 +20,7 @@ class ISession_Curve : public AIS_InteractiveObject
public:
ISession_Curve(const Handle(Geom_Curve)& aCurve);
virtual ~ISession_Curve();
-DEFINE_STANDARD_RTTI(ISession_Curve,AIS_InteractiveObject)
+DEFINE_STANDARD_RTTIEXT(ISession_Curve,AIS_InteractiveObject)
private:
Standard_EXPORT virtual void Compute(const Handle(PrsMgr_PresentationManager3d)& aPresentationManager,const Handle(Prs3d_Presentation)& aPresentation,const Standard_Integer aMode = 0) ;
diff --git a/samples/mfc/standard/04_Viewer3d/src/OCCDemo_Presentation.cpp b/samples/mfc/standard/04_Viewer3d/src/OCCDemo_Presentation.cpp
index 0abe4a7000..86e49efdfc 100755
--- a/samples/mfc/standard/04_Viewer3d/src/OCCDemo_Presentation.cpp
+++ b/samples/mfc/standard/04_Viewer3d/src/OCCDemo_Presentation.cpp
@@ -77,8 +77,8 @@ static Standard_Boolean fixParam(Standard_Real& theParam)
// Purpose : displays a given geometric surface in 3d viewer
// (creates a finite face and displays it)
//================================================================
-Handle_AIS_InteractiveObject OCCDemo_Presentation::drawSurface
- (const Handle_Geom_Surface& theSurface,
+Handle(AIS_InteractiveObject) OCCDemo_Presentation::drawSurface
+ (const Handle(Geom_Surface)& theSurface,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay)
{
@@ -89,7 +89,7 @@ Handle_AIS_InteractiveObject OCCDemo_Presentation::drawSurface
fixParam(v1);
fixParam(v2);
- Handle_AIS_Shape aGraphicSurface =
+ Handle(AIS_Shape) aGraphicSurface =
new AIS_Shape(BRepBuilderAPI_MakeFace (theSurface, u1, u2, v1, v2, Precision::Confusion()));
getAISContext()->SetMaterial(aGraphicSurface, Graphic3d_NOM_PLASTIC, toDisplay);
@@ -110,8 +110,8 @@ Handle_AIS_InteractiveObject OCCDemo_Presentation::drawSurface
// Function : DrawCurve
// Purpose : displays a given curve 3d
//================================================================
-Handle_AIS_InteractiveObject OCCDemo_Presentation::drawCurve
- (const Handle_Geom_Curve& theCurve,
+Handle(AIS_InteractiveObject) OCCDemo_Presentation::drawCurve
+ (const Handle(Geom_Curve)& theCurve,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay)
{
@@ -135,8 +135,8 @@ Handle_AIS_InteractiveObject OCCDemo_Presentation::drawCurve
// Function : DrawCurve
// Purpose : displays a given curve 2d
//================================================================
-Handle_AIS_InteractiveObject OCCDemo_Presentation::drawCurve
- (const Handle_Geom2d_Curve& theCurve,
+Handle(AIS_InteractiveObject) OCCDemo_Presentation::drawCurve
+ (const Handle(Geom2d_Curve)& theCurve,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay,
const gp_Ax2& aPosition)
@@ -163,7 +163,7 @@ Handle_AIS_InteractiveObject OCCDemo_Presentation::drawCurve
// Function : drawPoint
// Purpose : displays a given point
//================================================================
-Handle_AIS_Point OCCDemo_Presentation::drawPoint
+Handle(AIS_Point) OCCDemo_Presentation::drawPoint
(const gp_Pnt& aPnt,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay)
@@ -185,7 +185,7 @@ Handle_AIS_Point OCCDemo_Presentation::drawPoint
// (segment of line starting at thePnt with the arrow at the end,
// the length of segment is the length of the vector)
//================================================================
-Handle_AIS_InteractiveObject OCCDemo_Presentation::drawVector
+Handle(AIS_InteractiveObject) OCCDemo_Presentation::drawVector
(const gp_Pnt& thePnt,
const gp_Vec& theVec,
const Quantity_Color& theColor,
@@ -217,11 +217,11 @@ Handle_AIS_InteractiveObject OCCDemo_Presentation::drawVector
}
-Handle_AIS_Shape OCCDemo_Presentation::drawShape
+Handle(AIS_Shape) OCCDemo_Presentation::drawShape
(const TopoDS_Shape& theShape,const Quantity_Color& theColor,
const Standard_Boolean toDisplay)
{
- Handle_AIS_Shape aGraphicShape = new AIS_Shape(theShape);
+ Handle(AIS_Shape) aGraphicShape = new AIS_Shape(theShape);
getAISContext()->SetMaterial(aGraphicShape, Graphic3d_NOM_PLASTIC, toDisplay);
getAISContext()->SetColor (aGraphicShape, theColor, toDisplay);
@@ -237,12 +237,12 @@ Handle_AIS_Shape OCCDemo_Presentation::drawShape
return aGraphicShape;
}
-Handle_AIS_Shape OCCDemo_Presentation::drawShape
+Handle(AIS_Shape) OCCDemo_Presentation::drawShape
(const TopoDS_Shape& theShape,
const Graphic3d_NameOfMaterial theMaterial,
const Standard_Boolean toDisplay)
{
- Handle_AIS_Shape aGraphicShape = new AIS_Shape(theShape);
+ Handle(AIS_Shape) aGraphicShape = new AIS_Shape(theShape);
getAISContext()->SetMaterial(aGraphicShape, theMaterial, toDisplay);
if (toDisplay) {
@@ -313,12 +313,12 @@ void OCCDemo_Presentation::ResetView()
pView->Reset();
}
-Handle_AIS_InteractiveContext OCCDemo_Presentation::getAISContext() const
+Handle(AIS_InteractiveContext) OCCDemo_Presentation::getAISContext() const
{
return myDoc->GetAISContext();
}
-Handle_V3d_Viewer OCCDemo_Presentation::getViewer() const
+Handle(V3d_Viewer) OCCDemo_Presentation::getViewer() const
{
return myDoc->GetViewer();
}
diff --git a/samples/mfc/standard/04_Viewer3d/src/OCCDemo_Presentation.h b/samples/mfc/standard/04_Viewer3d/src/OCCDemo_Presentation.h
index 0ea90bd6b3..d1ffb0a166 100755
--- a/samples/mfc/standard/04_Viewer3d/src/OCCDemo_Presentation.h
+++ b/samples/mfc/standard/04_Viewer3d/src/OCCDemo_Presentation.h
@@ -66,8 +66,8 @@ public:
protected:
// Methods to call from a derivable class
void setName (const char* theName) {myName = CString(theName);}
- Handle_AIS_InteractiveContext getAISContext() const;
- Handle_V3d_Viewer getViewer() const;
+ Handle(AIS_InteractiveContext) getAISContext() const;
+ Handle(V3d_Viewer) getViewer() const;
// void setResultTitle (const char* theTitle) {myDoc->GetResultDialog()->SetTitle(theTitle);}
// void setResultText (const char* theText) {myDoc->GetResultDialog()->SetText(theText);}
Standard_CString GetDataDir();
@@ -75,45 +75,45 @@ protected:
Standard_Boolean WaitForInput (unsigned long aMilliSeconds);
// Waits for a user input or a period of time has been elapsed
- Handle_AIS_InteractiveObject drawSurface (const Handle_Geom_Surface& theSurface,
+ Handle(AIS_InteractiveObject) drawSurface (const Handle(Geom_Surface)& theSurface,
const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_LEMONCHIFFON3),
const Standard_Boolean toDisplay = Standard_True);
// creates a finite face based on the given geometric surface
// and displays it in the viewer if toDisplay = Standard_True
- Handle_AIS_InteractiveObject drawCurve (const Handle_Geom_Curve& theCurve,
+ Handle(AIS_InteractiveObject) drawCurve (const Handle(Geom_Curve)& theCurve,
const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_RED),
const Standard_Boolean toDisplay = Standard_True);
// creates an ISession_Curve based on the given geometric curve
// and displays it in the viewer if toDisplay = Standard_True
- Handle_AIS_InteractiveObject drawCurve (const Handle_Geom2d_Curve& theCurve,
+ Handle(AIS_InteractiveObject) drawCurve (const Handle(Geom2d_Curve)& theCurve,
const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_RED),
const Standard_Boolean toDisplay = Standard_True,
const gp_Ax2& aPosition = gp::XOY());
// converts a given curve to 3d using aPosition and calls the previous method
- Handle_AIS_Point drawPoint (const gp_Pnt& thePnt,
+ Handle(AIS_Point) drawPoint (const gp_Pnt& thePnt,
const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_GREEN),
const Standard_Boolean toDisplay = Standard_True);
// creates a presentation of the given point
// and displays it in the viewer if toDisplay = Standard_True
- Handle_AIS_InteractiveObject drawVector (const gp_Pnt& thePnt,
+ Handle(AIS_InteractiveObject) drawVector (const gp_Pnt& thePnt,
const gp_Vec& theVec,
const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_YELLOW),
const Standard_Boolean toDisplay = Standard_True);
// creates a presentation of the given vector
// and displays it in the viewer if toDisplay = Standard_True
- Handle_AIS_Shape drawShape (const TopoDS_Shape& theShape,
+ Handle(AIS_Shape) drawShape (const TopoDS_Shape& theShape,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay = Standard_True);
// creates a presentation of the given shape
// with material PLASTIC and a given color
// and displays it in the viewer if toDisplay = Standard_True
- Handle_AIS_Shape drawShape (const TopoDS_Shape& theShape,
+ Handle(AIS_Shape) drawShape (const TopoDS_Shape& theShape,
const Graphic3d_NameOfMaterial theMaterial = Graphic3d_NOM_BRASS,
const Standard_Boolean toDisplay = Standard_True);
// creates a presentation of the given shape with the given material
diff --git a/samples/mfc/standard/04_Viewer3d/src/ScaleDlg.cpp b/samples/mfc/standard/04_Viewer3d/src/ScaleDlg.cpp
index 939093ada4..65d39f2c14 100755
--- a/samples/mfc/standard/04_Viewer3d/src/ScaleDlg.cpp
+++ b/samples/mfc/standard/04_Viewer3d/src/ScaleDlg.cpp
@@ -14,7 +14,7 @@ static char THIS_FILE[] = __FILE__;
// ScaleDlg dialog
-ScaleDlg::ScaleDlg(Handle_V3d_View Current_V3d_View, CViewer3dView* pView, CWnd* pParent /*=NULL*/)
+ScaleDlg::ScaleDlg(Handle(V3d_View) Current_V3d_View, CViewer3dView* pView, CWnd* pParent /*=NULL*/)
: CDialog(ScaleDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(ScaleDlg)
diff --git a/samples/mfc/standard/04_Viewer3d/src/ScaleDlg.h b/samples/mfc/standard/04_Viewer3d/src/ScaleDlg.h
index 652dfef0e4..2353a9ff92 100755
--- a/samples/mfc/standard/04_Viewer3d/src/ScaleDlg.h
+++ b/samples/mfc/standard/04_Viewer3d/src/ScaleDlg.h
@@ -17,7 +17,7 @@ class ScaleDlg : public CDialog
{
// Construction
public:
- ScaleDlg(Handle_V3d_View Current_V3d_View, CViewer3dView* pView, CWnd* pParent = NULL);
+ ScaleDlg(Handle(V3d_View) Current_V3d_View, CViewer3dView* pView, CWnd* pParent = NULL);
// Dialog Data
//{{AFX_DATA(ScaleDlg)
@@ -53,7 +53,7 @@ protected:
private:
- Handle_V3d_View myCurrent_V3d_View;
+ Handle(V3d_View) myCurrent_V3d_View;
CViewer3dView* myView;
};
diff --git a/samples/mfc/standard/04_Viewer3d/src/ShadingModelDlg.cpp b/samples/mfc/standard/04_Viewer3d/src/ShadingModelDlg.cpp
index c053f450d8..77ecb4860e 100755
--- a/samples/mfc/standard/04_Viewer3d/src/ShadingModelDlg.cpp
+++ b/samples/mfc/standard/04_Viewer3d/src/ShadingModelDlg.cpp
@@ -15,7 +15,7 @@ static char THIS_FILE[] = __FILE__;
// CShadingModelDlg dialog
-CShadingModelDlg::CShadingModelDlg(Handle_V3d_View Current_V3d_View, CWnd* pParent /*=NULL*/)
+CShadingModelDlg::CShadingModelDlg(Handle(V3d_View) Current_V3d_View, CWnd* pParent /*=NULL*/)
: CDialog(CShadingModelDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CShadingModelDlg)
diff --git a/samples/mfc/standard/04_Viewer3d/src/ShadingModelDlg.h b/samples/mfc/standard/04_Viewer3d/src/ShadingModelDlg.h
index 48b6e87d0f..30f38ab23e 100755
--- a/samples/mfc/standard/04_Viewer3d/src/ShadingModelDlg.h
+++ b/samples/mfc/standard/04_Viewer3d/src/ShadingModelDlg.h
@@ -16,7 +16,7 @@ class CShadingModelDlg : public CDialog
{
// Construction
public:
- CShadingModelDlg(Handle_V3d_View Current_V3d_View, CWnd* pParent = NULL); // standard constructor
+ CShadingModelDlg(Handle(V3d_View) Current_V3d_View, CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CShadingModelDlg)
@@ -44,7 +44,7 @@ protected:
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
- Handle_V3d_View myCurrent_V3d_View;
+ Handle(V3d_View) myCurrent_V3d_View;
};
//{{AFX_INSERT_LOCATION}}
diff --git a/samples/mfc/standard/04_Viewer3d/src/TexturesExt_Presentation.cpp b/samples/mfc/standard/04_Viewer3d/src/TexturesExt_Presentation.cpp
index a04536a347..cf8c5721b8 100755
--- a/samples/mfc/standard/04_Viewer3d/src/TexturesExt_Presentation.cpp
+++ b/samples/mfc/standard/04_Viewer3d/src/TexturesExt_Presentation.cpp
@@ -69,7 +69,7 @@ void TexturesExt_Presentation::Init()
{
// initialize v3d_view so it displays TexturesExt well
getViewer()->InitActiveViews();
- Handle_V3d_View aView = getViewer()->ActiveView();
+ Handle(V3d_View) aView = getViewer()->ActiveView();
aView->SetSurfaceDetail(V3d_TEX_ALL);
aView->SetSize(ZVIEW_SIZE);
@@ -81,7 +81,7 @@ void TexturesExt_Presentation::Init()
" // aShape = ..." EOL
"" EOL
" // create a textured presentation object for aShape" EOL
- " Handle_AIS_TexturedShape aTShape = new AIS_TexturedShape(aShape);" EOL
+ " Handle(AIS_TexturedShape) aTShape = new AIS_TexturedShape(aShape);" EOL
"" EOL
" TCollection_AsciiString aTFileName;" EOL
"" EOL
@@ -127,7 +127,7 @@ void TexturesExt_Presentation::Init()
// a predefined texture from Graphic3d_NameOfTexture2D with number = this value
// is loaded.
//================================================================
-Handle_AIS_TexturedShape TexturesExt_Presentation::Texturize(const TopoDS_Shape& aShape,
+Handle(AIS_TexturedShape) TexturesExt_Presentation::Texturize(const TopoDS_Shape& aShape,
TCollection_AsciiString aTFileName,
Standard_Real toScaleU,
Standard_Real toScaleV,
@@ -137,7 +137,7 @@ Handle_AIS_TexturedShape TexturesExt_Presentation::Texturize(const TopoDS_Shape&
Standard_Real originV)
{
// create a textured presentation object for aShape
- Handle_AIS_TexturedShape aTShape = new AIS_TexturedShape(aShape);
+ Handle(AIS_TexturedShape) aTShape = new AIS_TexturedShape(aShape);
TCollection_AsciiString TFileName;
// load texture from file if it is not an integer value
// integer value indicates a number of texture in predefined TexturesExt enumeration
@@ -204,12 +204,12 @@ Standard_Boolean TexturesExt_Presentation::loadShape(TopoDS_Shape& aShape,
//================================================================
void TexturesExt_Presentation::lightsOnOff(Standard_Boolean isOn)
{
- static Handle_V3d_Light aLight1 = new V3d_DirectionalLight(getViewer(), V3d_XnegYposZneg);
- static Handle_V3d_Light aLight2 = new V3d_DirectionalLight(getViewer(), V3d_XnegYnegZpos);
- static Handle_V3d_Light aLight3 = new V3d_DirectionalLight(getViewer(), V3d_XposYnegZpos);
- static Handle_V3d_Light aLight4 = new V3d_DirectionalLight(getViewer(), V3d_XnegYnegZneg);
- static Handle_V3d_Light aLight5 = new V3d_DirectionalLight(getViewer(), V3d_XnegYposZpos);
- static Handle_V3d_Light aLight6 = new V3d_DirectionalLight(getViewer(), V3d_XposYposZpos);
+ static Handle(V3d_Light) aLight1 = new V3d_DirectionalLight(getViewer(), V3d_XnegYposZneg);
+ static Handle(V3d_Light) aLight2 = new V3d_DirectionalLight(getViewer(), V3d_XnegYnegZpos);
+ static Handle(V3d_Light) aLight3 = new V3d_DirectionalLight(getViewer(), V3d_XposYnegZpos);
+ static Handle(V3d_Light) aLight4 = new V3d_DirectionalLight(getViewer(), V3d_XnegYnegZneg);
+ static Handle(V3d_Light) aLight5 = new V3d_DirectionalLight(getViewer(), V3d_XnegYposZpos);
+ static Handle(V3d_Light) aLight6 = new V3d_DirectionalLight(getViewer(), V3d_XposYposZpos);
if (isOn)
{
@@ -254,16 +254,16 @@ aShape = Transformer.Shape();
TopExp::MapShapes(aShape, TopAbs_FACE, aFaces);
// display original shape in shaded display mode
- Handle_AIS_Shape aShapeIO = drawShape(aShape, Graphic3d_NOM_BRASS, Standard_False);
+ Handle(AIS_Shape) aShapeIO = drawShape(aShape, Graphic3d_NOM_BRASS, Standard_False);
getAISContext()->SetDisplayMode(aShapeIO, AIS_Shaded, Standard_False);
// Set increased polygon offset for the main shape to avoid depth collision with textured faces
aShapeIO->SetPolygonOffsets(Aspect_POM_Fill, 1.5, 0.5);
DISP(aShapeIO);
- Handle_AIS_TexturedShape aTFace1 = Texturize(aFaces(16), "carrelage1.gif", 1, 1, 3, 2);
+ Handle(AIS_TexturedShape) aTFace1 = Texturize(aFaces(16), "carrelage1.gif", 1, 1, 3, 2);
DISP(aTFace1);
- Handle_AIS_TexturedShape aTFace2 = Texturize(aFaces(21), "carrelage1.gif", 1, 1, 3, 2);
+ Handle(AIS_TexturedShape) aTFace2 = Texturize(aFaces(21), "carrelage1.gif", 1, 1, 3, 2);
DISP(aTFace2);
getViewer()->Update();
@@ -285,7 +285,7 @@ void TexturesExt_Presentation::sampleTerrain()
TopExp::MapShapes(aShape, TopAbs_FACE, aFaces);
// TopLoc_Location aLoc;
-// Handle_Geom_Surface aSur = BRep_Tool::Surface(TopoDS::Face(aFaces(1)), aLoc);
+// Handle(Geom_Surface) aSur = BRep_Tool::Surface(TopoDS::Face(aFaces(1)), aLoc);
// Standard_Real u1,u2,v1,v2;
// aSur->Bounds(u1,u2,v1,v2);
// gp_Pnt aPnt = aSur->Value(u1, v1);
diff --git a/samples/mfc/standard/04_Viewer3d/src/TexturesExt_Presentation.h b/samples/mfc/standard/04_Viewer3d/src/TexturesExt_Presentation.h
index 63d3f3a7a1..3157c29de7 100755
--- a/samples/mfc/standard/04_Viewer3d/src/TexturesExt_Presentation.h
+++ b/samples/mfc/standard/04_Viewer3d/src/TexturesExt_Presentation.h
@@ -32,7 +32,7 @@ private:
// filename can also be an integer value ("2", "5", etc.), in this case
// a predefined texture from Graphic3d_NameOfTexture2D with number = this value
// is loaded.
- Handle_AIS_TexturedShape Texturize(
+ Handle(AIS_TexturedShape) Texturize(
const TopoDS_Shape& aShape, TCollection_AsciiString aTFileName,
Standard_Real toScaleU=1.0, Standard_Real toScaleV=1.0,
Standard_Real toRepeatU=1.0, Standard_Real toRepeatV=1.0,
diff --git a/samples/mfc/standard/04_Viewer3d/src/TrihedronDlg.cpp b/samples/mfc/standard/04_Viewer3d/src/TrihedronDlg.cpp
index db12fde046..6db2006ab1 100755
--- a/samples/mfc/standard/04_Viewer3d/src/TrihedronDlg.cpp
+++ b/samples/mfc/standard/04_Viewer3d/src/TrihedronDlg.cpp
@@ -35,7 +35,7 @@ value = (value*neg)/inc;
//CTrihedronDlg::CTrihedronDlg(CWnd* pParent /*=NULL*/)
//: CDialog(CTrihedronDlg::IDD, pParent)
-CTrihedronDlg::CTrihedronDlg(Handle_V3d_View Current_V3d_View, CViewer3dDoc* pDoc, CWnd* pParent /*=NULL*/)
+CTrihedronDlg::CTrihedronDlg(Handle(V3d_View) Current_V3d_View, CViewer3dDoc* pDoc, CWnd* pParent /*=NULL*/)
: CDialog(CTrihedronDlg::IDD, pParent)
{
diff --git a/samples/mfc/standard/04_Viewer3d/src/TrihedronDlg.h b/samples/mfc/standard/04_Viewer3d/src/TrihedronDlg.h
index 56dbfb25bf..bfe4056f9d 100755
--- a/samples/mfc/standard/04_Viewer3d/src/TrihedronDlg.h
+++ b/samples/mfc/standard/04_Viewer3d/src/TrihedronDlg.h
@@ -21,7 +21,7 @@ class CTrihedronDlg : public CDialog
// Construction
public:
CTrihedronDlg(CWnd* pParent = NULL); // standard constructor
- CTrihedronDlg(Handle_V3d_View Current_V3d_View, CViewer3dDoc* pDoc, CWnd* pParent = NULL); // standard constructor
+ CTrihedronDlg(Handle(V3d_View) Current_V3d_View, CViewer3dDoc* pDoc, CWnd* pParent = NULL); // standard constructor
// Dialog Data
@@ -63,7 +63,7 @@ protected:
private:
- Handle_V3d_View myCurrent_V3d_View;
+ Handle(V3d_View) myCurrent_V3d_View;
CViewer3dDoc* myDoc;
Quantity_NameOfColor Color ;
Aspect_TypeOfTriedronPosition Position;
diff --git a/samples/mfc/standard/04_Viewer3d/src/Viewer3dDoc.cpp b/samples/mfc/standard/04_Viewer3d/src/Viewer3dDoc.cpp
index 3974ab181c..15d44fc49d 100755
--- a/samples/mfc/standard/04_Viewer3d/src/Viewer3dDoc.cpp
+++ b/samples/mfc/standard/04_Viewer3d/src/Viewer3dDoc.cpp
@@ -445,34 +445,34 @@ void CViewer3dDoc::OnObjectDisplayall()
myOffsetDlg->UpdateValues();
}
-Handle_User_Cylinder CViewer3dDoc::GetCylinder()
+Handle(User_Cylinder) CViewer3dDoc::GetCylinder()
{
return myCylinder;
}
-Handle_AIS_Shape CViewer3dDoc::GetSphere()
+Handle(AIS_Shape) CViewer3dDoc::GetSphere()
{
return mySphere;
}
-Handle_AIS_Shape CViewer3dDoc::GetBox()
+Handle(AIS_Shape) CViewer3dDoc::GetBox()
{
return myBox;
}
-Handle_AIS_Shape CViewer3dDoc::GetOverlappedCylinder()
+Handle(AIS_Shape) CViewer3dDoc::GetOverlappedCylinder()
{
return myOverlappedCylinder;
}
-Handle_AIS_Shape CViewer3dDoc::GetOverlappedSphere()
+Handle(AIS_Shape) CViewer3dDoc::GetOverlappedSphere()
{
return myOverlappedSphere;
}
-Handle_AIS_Shape CViewer3dDoc::GetOverlappedBox()
+Handle(AIS_Shape) CViewer3dDoc::GetOverlappedBox()
{
return myOverlappedBox;
}
@@ -507,7 +507,7 @@ void CViewer3dDoc::InputEvent(const Standard_Integer /*x*/,
myAISContext->InitSelected();
if (myAISContext->MoreSelected())
{
- Handle_AIS_InteractiveObject Current = myAISContext->SelectedInteractive();
+ Handle(AIS_InteractiveObject) Current = myAISContext->SelectedInteractive();
if (Current->HasColor())
{
CSFColor = myAISContext->Color (Current);
@@ -770,7 +770,7 @@ void CViewer3dDoc::OnFillet3d()
myAISContext->InitSelected();
if (myAISContext->MoreSelected())
{
- const Handle(AIS_Shape)& aSelInteractive = Handle(AIS_Shape)::DownCast (myAISContext->SelectedInteractive());
+ Handle(AIS_Shape) aSelInteractive (Handle(AIS_Shape)::DownCast (myAISContext->SelectedInteractive()));
if (aSelInteractive.IsNull())
{
AfxMessageBox (L"It is necessary to activate the edges selection mode\n"
diff --git a/samples/mfc/standard/04_Viewer3d/src/Viewer3dDoc.h b/samples/mfc/standard/04_Viewer3d/src/Viewer3dDoc.h
index af369bbbe9..69a4a708a4 100755
--- a/samples/mfc/standard/04_Viewer3d/src/Viewer3dDoc.h
+++ b/samples/mfc/standard/04_Viewer3d/src/Viewer3dDoc.h
@@ -34,12 +34,12 @@ protected: // create from serialization only
public:
void SetMyStaticTrihedronAxisIsDisplayed(BOOL IsDisplayed);
- Handle_AIS_Shape GetBox();
- Handle_AIS_Shape GetSphere();
- Handle_User_Cylinder GetCylinder();
- Handle_AIS_Shape GetOverlappedBox();
- Handle_AIS_Shape GetOverlappedSphere();
- Handle_AIS_Shape GetOverlappedCylinder();
+ Handle(AIS_Shape) GetBox();
+ Handle(AIS_Shape) GetSphere();
+ Handle(User_Cylinder) GetCylinder();
+ Handle(AIS_Shape) GetOverlappedBox();
+ Handle(AIS_Shape) GetOverlappedSphere();
+ Handle(AIS_Shape) GetOverlappedCylinder();
void Start();
Standard_CString GetDataDir() {return myDataDir;}
static void Fit();
@@ -137,13 +137,13 @@ protected:
private:
COffsetDlg* myOffsetDlg;
- Handle_User_Cylinder myCylinder;
- Handle_AIS_Shape mySphere;
- Handle_AIS_Shape myBox;
- Handle_AIS_Shape myOverlappedCylinder;
- Handle_AIS_Shape myOverlappedSphere;
- Handle_AIS_Shape myOverlappedBox;
- Handle_AIS_Trihedron myTrihedron;
+ Handle(User_Cylinder) myCylinder;
+ Handle(AIS_Shape) mySphere;
+ Handle(AIS_Shape) myBox;
+ Handle(AIS_Shape) myOverlappedCylinder;
+ Handle(AIS_Shape) myOverlappedSphere;
+ Handle(AIS_Shape) myOverlappedBox;
+ Handle(AIS_Trihedron) myTrihedron;
OCCDemo_Presentation *myPresentation;
char myDataDir[5]; // for "Data\0"
diff --git a/samples/mfc/standard/04_Viewer3d/src/Viewer3dView.h b/samples/mfc/standard/04_Viewer3d/src/Viewer3dView.h
index bcf2543205..8aeb8239ca 100755
--- a/samples/mfc/standard/04_Viewer3d/src/Viewer3dView.h
+++ b/samples/mfc/standard/04_Viewer3d/src/Viewer3dView.h
@@ -130,8 +130,8 @@ private:
enum VisMode { VIS_WIREFRAME, VIS_SHADE, VIS_HLR };
VisMode myVisMode;
- Handle_V3d_View myView;
- Handle_Graphic3d_GraphicDriver myGraphicDriver;
+ Handle(V3d_View) myView;
+ Handle(Graphic3d_GraphicDriver) myGraphicDriver;
View3D_CurrentAction myCurrentMode;
Standard_Integer myXmin;
Standard_Integer myYmin;
diff --git a/samples/mfc/standard/04_Viewer3d/src/ZClippingDlg.cpp b/samples/mfc/standard/04_Viewer3d/src/ZClippingDlg.cpp
index 273a3c3684..14e2e355e4 100755
--- a/samples/mfc/standard/04_Viewer3d/src/ZClippingDlg.cpp
+++ b/samples/mfc/standard/04_Viewer3d/src/ZClippingDlg.cpp
@@ -15,7 +15,7 @@ static char THIS_FILE[] = __FILE__;
/////////////////////////////////////////////////////////////////////////////
// ZClippingDlg dialog
-ZClippingDlg::ZClippingDlg(Handle_V3d_View Current_V3d_View, CViewer3dDoc* pDoc, CWnd* pParent /*=NULL*/)
+ZClippingDlg::ZClippingDlg(Handle(V3d_View) Current_V3d_View, CViewer3dDoc* pDoc, CWnd* pParent /*=NULL*/)
: CDialog(ZClippingDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(ZClippingDlg)
diff --git a/samples/mfc/standard/04_Viewer3d/src/ZClippingDlg.h b/samples/mfc/standard/04_Viewer3d/src/ZClippingDlg.h
index 08c3fbfcab..7b83f5136d 100755
--- a/samples/mfc/standard/04_Viewer3d/src/ZClippingDlg.h
+++ b/samples/mfc/standard/04_Viewer3d/src/ZClippingDlg.h
@@ -14,7 +14,7 @@ class ZClippingDlg : public CDialog
{
// Construction
public:
- ZClippingDlg(Handle_V3d_View Current_V3d_View, CViewer3dDoc* pDoc, CWnd* pParent = NULL); // standard constructor
+ ZClippingDlg(Handle(V3d_View) Current_V3d_View, CViewer3dDoc* pDoc, CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(ZClippingDlg)
diff --git a/samples/mfc/standard/04_Viewer3d/src/ZCueingDlg.cpp b/samples/mfc/standard/04_Viewer3d/src/ZCueingDlg.cpp
index 186a697132..3edbc0045f 100755
--- a/samples/mfc/standard/04_Viewer3d/src/ZCueingDlg.cpp
+++ b/samples/mfc/standard/04_Viewer3d/src/ZCueingDlg.cpp
@@ -16,7 +16,7 @@ static char THIS_FILE[] = __FILE__;
// ZCueingDlg dialog
-ZCueingDlg::ZCueingDlg(Handle_V3d_View Current_V3d_View, CViewer3dDoc* pDoc, CWnd* pParent /*=NULL*/)
+ZCueingDlg::ZCueingDlg(Handle(V3d_View) Current_V3d_View, CViewer3dDoc* pDoc, CWnd* pParent /*=NULL*/)
: CDialog(ZCueingDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(ZCueingDlg)
diff --git a/samples/mfc/standard/04_Viewer3d/src/ZCueingDlg.h b/samples/mfc/standard/04_Viewer3d/src/ZCueingDlg.h
index 60e9d884ee..55e98623ce 100755
--- a/samples/mfc/standard/04_Viewer3d/src/ZCueingDlg.h
+++ b/samples/mfc/standard/04_Viewer3d/src/ZCueingDlg.h
@@ -14,7 +14,7 @@ class ZCueingDlg : public CDialog
{
// Construction
public:
- ZCueingDlg(Handle_V3d_View Current_V3d_View, CViewer3dDoc* pDoc, CWnd* pParent = NULL);
+ ZCueingDlg(Handle(V3d_View) Current_V3d_View, CViewer3dDoc* pDoc, CWnd* pParent = NULL);
// Dialog Data
//{{AFX_DATA(ZCueingDlg)
enum { IDD = IDD_ZCUEING };
@@ -48,7 +48,7 @@ protected:
private:
- Handle_V3d_View myCurrent_V3d_View;
+ Handle(V3d_View) myCurrent_V3d_View;
CViewer3dDoc* myDoc;
};
diff --git a/samples/mfc/standard/06_Ocaf/src/OCAFSample_CommonDriver.hxx b/samples/mfc/standard/06_Ocaf/src/OCAFSample_CommonDriver.hxx
index 7a2d8607c1..b5d983af9e 100755
--- a/samples/mfc/standard/06_Ocaf/src/OCAFSample_CommonDriver.hxx
+++ b/samples/mfc/standard/06_Ocaf/src/OCAFSample_CommonDriver.hxx
@@ -20,7 +20,6 @@
#include
#endif
#ifndef _Handle_OCAFSample_CommonDriver_HeaderFile
-#include
#endif
#ifndef _OCAFSample_Driver_HeaderFile
@@ -63,7 +62,7 @@ Standard_EXPORT ~OCAFSample_CommonDriver();
// Type management
//
- Standard_EXPORT friend Handle_Standard_Type& OCAFSample_CommonDriver_Type_();
+ Standard_EXPORT friend Handle(Standard_Type)& OCAFSample_CommonDriver_Type_();
Standard_EXPORT const Handle(Standard_Type)& DynamicType() const;
Standard_EXPORT Standard_Boolean IsKind(const Handle(Standard_Type)&) const;
diff --git a/samples/mfc/standard/06_Ocaf/src/OCAFSample_Driver.hxx b/samples/mfc/standard/06_Ocaf/src/OCAFSample_Driver.hxx
index 704f37b307..ffeea09a7d 100755
--- a/samples/mfc/standard/06_Ocaf/src/OCAFSample_Driver.hxx
+++ b/samples/mfc/standard/06_Ocaf/src/OCAFSample_Driver.hxx
@@ -20,7 +20,6 @@
#include
#endif
#ifndef _Handle_OCAFSample_Driver_HeaderFile
-#include
#endif
#ifndef _TFunction_Driver_HeaderFile
@@ -33,7 +32,7 @@
#include
#endif
class TFunction_Logbook;
-class TDF_LabelMap;
+#include
class OCAFSample_Driver : public TFunction_Driver {
@@ -70,7 +69,7 @@ Standard_EXPORT ~OCAFSample_Driver();
// Type management
//
- Standard_EXPORT friend Handle_Standard_Type& OCAFSample_Driver_Type_();
+ Standard_EXPORT friend Handle(Standard_Type)& OCAFSample_Driver_Type_();
Standard_EXPORT const Handle(Standard_Type)& DynamicType() const;
Standard_EXPORT Standard_Boolean IsKind(const Handle(Standard_Type)&) const;
diff --git a/samples/mfc/standard/06_Ocaf/src/OcafDoc.h b/samples/mfc/standard/06_Ocaf/src/OcafDoc.h
index 3a93ded714..d1704d215e 100755
--- a/samples/mfc/standard/06_Ocaf/src/OcafDoc.h
+++ b/samples/mfc/standard/06_Ocaf/src/OcafDoc.h
@@ -63,11 +63,11 @@ protected:
DECLARE_MESSAGE_MAP()
public :
void ActivateFrame(CRuntimeClass* pViewClass, int nCmdShow = SW_RESTORE );
- Handle_TDocStd_Document GetOcafDoc() {return myOcafDoc;};
+ Handle(TDocStd_Document) GetOcafDoc() {return myOcafDoc;};
CString PathName;
private:
- Handle_TDocStd_Document myOcafDoc;
+ Handle(TDocStd_Document) myOcafDoc;
public :
void EraseAll();
diff --git a/samples/mfc/standard/06_Ocaf/src/TOcafFunction_BoxDriver.cxx b/samples/mfc/standard/06_Ocaf/src/TOcafFunction_BoxDriver.cxx
index 3a2c35d657..09f0069268 100755
--- a/samples/mfc/standard/06_Ocaf/src/TOcafFunction_BoxDriver.cxx
+++ b/samples/mfc/standard/06_Ocaf/src/TOcafFunction_BoxDriver.cxx
@@ -130,7 +130,7 @@ const Handle(TOcafFunction_BoxDriver) TOcafFunction_BoxDriver::DownCast(const Ha
if (!AnObject.IsNull()) {
if (AnObject->IsKind(STANDARD_TYPE(TOcafFunction_BoxDriver))) {
- _anOtherObject = Handle(TOcafFunction_BoxDriver)((Handle(TOcafFunction_BoxDriver)&)AnObject);
+ _anOtherObject = Handle(TOcafFunction_BoxDriver)::DownCast (AnObject);
}
}
diff --git a/samples/mfc/standard/06_Ocaf/src/TOcafFunction_CutDriver.cxx b/samples/mfc/standard/06_Ocaf/src/TOcafFunction_CutDriver.cxx
index 88fa765ccf..5e49dec393 100755
--- a/samples/mfc/standard/06_Ocaf/src/TOcafFunction_CutDriver.cxx
+++ b/samples/mfc/standard/06_Ocaf/src/TOcafFunction_CutDriver.cxx
@@ -151,7 +151,7 @@ const Handle(TOcafFunction_CutDriver) TOcafFunction_CutDriver::DownCast(const Ha
if (!AnObject.IsNull()) {
if (AnObject->IsKind(STANDARD_TYPE(TOcafFunction_CutDriver))) {
- _anOtherObject = Handle(TOcafFunction_CutDriver)((Handle(TOcafFunction_CutDriver)&)AnObject);
+ _anOtherObject = Handle(TOcafFunction_CutDriver)::DownCast (AnObject);
}
}
diff --git a/samples/mfc/standard/06_Ocaf/src/TOcafFunction_CutDriver.hxx b/samples/mfc/standard/06_Ocaf/src/TOcafFunction_CutDriver.hxx
index da7ab59021..da01087dc8 100755
--- a/samples/mfc/standard/06_Ocaf/src/TOcafFunction_CutDriver.hxx
+++ b/samples/mfc/standard/06_Ocaf/src/TOcafFunction_CutDriver.hxx
@@ -66,7 +66,7 @@ Standard_EXPORT ~TOcafFunction_CutDriver();
// Type management
//
- //Standard_EXPORT friend Handle_Standard_Type& TOcafFunction_CutDriver_Type_();
+ //Standard_EXPORT friend Handle(Standard_Type)& TOcafFunction_CutDriver_Type_();
Standard_EXPORT const Handle(TOcafFunction_CutDriver) DownCast(const Handle(Standard_Transient)& AnObject);
Standard_EXPORT const Handle(Standard_Type)& DynamicType() const;
Standard_EXPORT Standard_Boolean IsKind(const Handle(Standard_Type)&) const;
diff --git a/samples/mfc/standard/06_Ocaf/src/TOcafFunction_CylDriver.cxx b/samples/mfc/standard/06_Ocaf/src/TOcafFunction_CylDriver.cxx
index 467f149f35..fb2ef18813 100755
--- a/samples/mfc/standard/06_Ocaf/src/TOcafFunction_CylDriver.cxx
+++ b/samples/mfc/standard/06_Ocaf/src/TOcafFunction_CylDriver.cxx
@@ -125,7 +125,7 @@ const Handle(TOcafFunction_CylDriver) TOcafFunction_CylDriver::DownCast(const Ha
if (!AnObject.IsNull()) {
if (AnObject->IsKind(STANDARD_TYPE(TOcafFunction_CylDriver))) {
- _anOtherObject = Handle(TOcafFunction_CylDriver)((Handle(TOcafFunction_CylDriver)&)AnObject);
+ _anOtherObject = Handle(TOcafFunction_CylDriver)::DownCast (AnObject);
}
}
diff --git a/samples/mfc/standard/06_Ocaf/src/TOcafFunction_CylDriver.hxx b/samples/mfc/standard/06_Ocaf/src/TOcafFunction_CylDriver.hxx
index 07b5f5624f..6b656e0ca5 100755
--- a/samples/mfc/standard/06_Ocaf/src/TOcafFunction_CylDriver.hxx
+++ b/samples/mfc/standard/06_Ocaf/src/TOcafFunction_CylDriver.hxx
@@ -66,7 +66,7 @@ Standard_EXPORT ~TOcafFunction_CylDriver();
// Type management
//
- //Standard_EXPORT friend Handle_Standard_Type& TOcafFunction_CylDriver_Type_();
+ //Standard_EXPORT friend Handle(Standard_Type)& TOcafFunction_CylDriver_Type_();
Standard_EXPORT const Handle(TOcafFunction_CylDriver) DownCast(const Handle(Standard_Transient)& AnObject);
Standard_EXPORT const Handle(Standard_Type)& DynamicType() const;
Standard_EXPORT Standard_Boolean IsKind(const Handle(Standard_Type)&) const;
diff --git a/samples/mfc/standard/06_Ocaf/src/TOcaf_Application.hxx b/samples/mfc/standard/06_Ocaf/src/TOcaf_Application.hxx
index 697c281ad8..34eefd436e 100755
--- a/samples/mfc/standard/06_Ocaf/src/TOcaf_Application.hxx
+++ b/samples/mfc/standard/06_Ocaf/src/TOcaf_Application.hxx
@@ -42,7 +42,7 @@ Standard_EXPORT ~TOcaf_Application();
// Type management
//
- //Standard_EXPORT friend Handle_Standard_Type& TOcaf_Application_Type_();
+ //Standard_EXPORT friend Handle(Standard_Type)& TOcaf_Application_Type_();
Standard_EXPORT const Handle(TOcaf_Application) DownCast(const Handle(Standard_Transient)& AnObject);
Standard_EXPORT const Handle(Standard_Type)& DynamicType() const;
Standard_EXPORT Standard_Boolean IsKind(const Handle(Standard_Type)&) const;
diff --git a/samples/mfc/standard/06_Ocaf/src/TOcaf_Commands.hxx b/samples/mfc/standard/06_Ocaf/src/TOcaf_Commands.hxx
index 694922418c..bf85d5df81 100755
--- a/samples/mfc/standard/06_Ocaf/src/TOcaf_Commands.hxx
+++ b/samples/mfc/standard/06_Ocaf/src/TOcaf_Commands.hxx
@@ -51,7 +51,7 @@ public:
// Methods PUBLIC
//
Standard_EXPORT TOcaf_Commands(const TDF_Label& Main);
-//Standard_EXPORT Handle_TDataStd_TreeNode Graph() ;
+//Standard_EXPORT Handle(TDataStd_TreeNode) Graph() ;
protected:
diff --git a/samples/mfc/standard/07_Triangulation/src/ISession_Curve.cpp b/samples/mfc/standard/07_Triangulation/src/ISession_Curve.cpp
index 97a4326955..839a7a7aee 100755
--- a/samples/mfc/standard/07_Triangulation/src/ISession_Curve.cpp
+++ b/samples/mfc/standard/07_Triangulation/src/ISession_Curve.cpp
@@ -10,7 +10,6 @@
#include
#include
-IMPLEMENT_STANDARD_HANDLE(ISession_Curve,AIS_InteractiveObject)
IMPLEMENT_STANDARD_RTTIEXT(ISession_Curve,AIS_InteractiveObject)
#ifdef _DEBUG
diff --git a/samples/mfc/standard/07_Triangulation/src/ISession_Curve.h b/samples/mfc/standard/07_Triangulation/src/ISession_Curve.h
index b89cba6b68..fa99e1e5ae 100755
--- a/samples/mfc/standard/07_Triangulation/src/ISession_Curve.h
+++ b/samples/mfc/standard/07_Triangulation/src/ISession_Curve.h
@@ -20,7 +20,7 @@ class ISession_Curve : public AIS_InteractiveObject
public:
ISession_Curve(const Handle(Geom_Curve)& aCurve);
virtual ~ISession_Curve();
-DEFINE_STANDARD_RTTI(ISession_Curve,AIS_InteractiveObject)
+DEFINE_STANDARD_RTTIEXT(ISession_Curve,AIS_InteractiveObject)
private:
Standard_EXPORT virtual void Compute(const Handle(PrsMgr_PresentationManager3d)& aPresentationManager,const Handle(Prs3d_Presentation)& aPresentation,const Standard_Integer aMode = 0) ;
diff --git a/samples/mfc/standard/07_Triangulation/src/OCCDemo_Presentation.cpp b/samples/mfc/standard/07_Triangulation/src/OCCDemo_Presentation.cpp
index 9ec17d72c9..3b3d5dd157 100755
--- a/samples/mfc/standard/07_Triangulation/src/OCCDemo_Presentation.cpp
+++ b/samples/mfc/standard/07_Triangulation/src/OCCDemo_Presentation.cpp
@@ -78,8 +78,8 @@ static Standard_Boolean fixParam(Standard_Real& theParam)
// Purpose : displays a given geometric surface in 3d viewer
// (creates a finite face and displays it)
//================================================================
-Handle_AIS_InteractiveObject OCCDemo_Presentation::drawSurface
- (const Handle_Geom_Surface& theSurface,
+Handle(AIS_InteractiveObject) OCCDemo_Presentation::drawSurface
+ (const Handle(Geom_Surface)& theSurface,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay)
{
@@ -90,7 +90,7 @@ Handle_AIS_InteractiveObject OCCDemo_Presentation::drawSurface
fixParam(v1);
fixParam(v2);
- Handle_AIS_Shape aGraphicSurface =
+ Handle(AIS_Shape) aGraphicSurface =
new AIS_Shape(BRepBuilderAPI_MakeFace (theSurface, u1, u2, v1, v2, Precision::Confusion()));
getAISContext()->SetMaterial(aGraphicSurface, Graphic3d_NOM_PLASTIC, toDisplay);
@@ -111,8 +111,8 @@ Handle_AIS_InteractiveObject OCCDemo_Presentation::drawSurface
// Function : DrawCurve
// Purpose : displays a given curve 3d
//================================================================
-Handle_AIS_InteractiveObject OCCDemo_Presentation::drawCurve
- (const Handle_Geom_Curve& theCurve,
+Handle(AIS_InteractiveObject) OCCDemo_Presentation::drawCurve
+ (const Handle(Geom_Curve)& theCurve,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay)
{
@@ -136,8 +136,8 @@ Handle_AIS_InteractiveObject OCCDemo_Presentation::drawCurve
// Function : DrawCurve
// Purpose : displays a given curve 2d
//================================================================
-Handle_AIS_InteractiveObject OCCDemo_Presentation::drawCurve
- (const Handle_Geom2d_Curve& theCurve,
+Handle(AIS_InteractiveObject) OCCDemo_Presentation::drawCurve
+ (const Handle(Geom2d_Curve)& theCurve,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay,
const gp_Ax2& aPosition)
@@ -164,7 +164,7 @@ Handle_AIS_InteractiveObject OCCDemo_Presentation::drawCurve
// Function : drawPoint
// Purpose : displays a given point
//================================================================
-Handle_AIS_Point OCCDemo_Presentation::drawPoint
+Handle(AIS_Point) OCCDemo_Presentation::drawPoint
(const gp_Pnt& aPnt,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay)
@@ -186,7 +186,7 @@ Handle_AIS_Point OCCDemo_Presentation::drawPoint
// (segment of line starting at thePnt with the arrow at the end,
// the length of segment is the length of the vector)
//================================================================
-Handle_AIS_InteractiveObject OCCDemo_Presentation::drawVector
+Handle(AIS_InteractiveObject) OCCDemo_Presentation::drawVector
(const gp_Pnt& thePnt,
const gp_Vec& theVec,
const Quantity_Color& theColor,
@@ -218,11 +218,11 @@ Handle_AIS_InteractiveObject OCCDemo_Presentation::drawVector
}
-Handle_AIS_Shape OCCDemo_Presentation::drawShape
+Handle(AIS_Shape) OCCDemo_Presentation::drawShape
(const TopoDS_Shape& theShape,const Quantity_Color& theColor,
const Standard_Boolean toDisplay)
{
- Handle_AIS_Shape aGraphicShape = new AIS_Shape(theShape);
+ Handle(AIS_Shape) aGraphicShape = new AIS_Shape(theShape);
getAISContext()->SetMaterial(aGraphicShape, Graphic3d_NOM_PLASTIC, toDisplay);
getAISContext()->SetColor (aGraphicShape, theColor, toDisplay);
@@ -238,12 +238,12 @@ Handle_AIS_Shape OCCDemo_Presentation::drawShape
return aGraphicShape;
}
-Handle_AIS_Shape OCCDemo_Presentation::drawShape
+Handle(AIS_Shape) OCCDemo_Presentation::drawShape
(const TopoDS_Shape& theShape,
const Graphic3d_NameOfMaterial theMaterial,
const Standard_Boolean toDisplay)
{
- Handle_AIS_Shape aGraphicShape = new AIS_Shape(theShape);
+ Handle(AIS_Shape) aGraphicShape = new AIS_Shape(theShape);
getAISContext()->SetMaterial(aGraphicShape, theMaterial, toDisplay);
if (toDisplay) {
@@ -314,12 +314,12 @@ void OCCDemo_Presentation::ResetView()
pView->Reset();
}
*/
-Handle_AIS_InteractiveContext OCCDemo_Presentation::getAISContext() const
+Handle(AIS_InteractiveContext) OCCDemo_Presentation::getAISContext() const
{
return myDoc->GetAISContext();
}
-Handle_V3d_Viewer OCCDemo_Presentation::getViewer() const
+Handle(V3d_Viewer) OCCDemo_Presentation::getViewer() const
{
return myDoc->GetViewer();
}
diff --git a/samples/mfc/standard/07_Triangulation/src/OCCDemo_Presentation.h b/samples/mfc/standard/07_Triangulation/src/OCCDemo_Presentation.h
index f29fa0d40d..5b685d6851 100755
--- a/samples/mfc/standard/07_Triangulation/src/OCCDemo_Presentation.h
+++ b/samples/mfc/standard/07_Triangulation/src/OCCDemo_Presentation.h
@@ -68,52 +68,52 @@ public:
protected:
// Methods to call from a derivable class
void setName (const char* theName) {myName = CString(theName);}
- Handle_AIS_InteractiveContext getAISContext() const;
- Handle_V3d_Viewer getViewer() const;
+ Handle(AIS_InteractiveContext) getAISContext() const;
+ Handle(V3d_Viewer) getViewer() const;
Standard_CString GetDataDir();
Standard_Boolean WaitForInput (unsigned long aMilliSeconds);
// Waits for a user input or a period of time has been elapsed
- Handle_AIS_InteractiveObject drawSurface (const Handle_Geom_Surface& theSurface,
+ Handle(AIS_InteractiveObject) drawSurface (const Handle(Geom_Surface)& theSurface,
const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_LEMONCHIFFON3),
const Standard_Boolean toDisplay = Standard_True);
// creates a finite face based on the given geometric surface
// and displays it in the viewer if toDisplay = Standard_True
- Handle_AIS_InteractiveObject drawCurve (const Handle_Geom_Curve& theCurve,
+ Handle(AIS_InteractiveObject) drawCurve (const Handle(Geom_Curve)& theCurve,
const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_RED),
const Standard_Boolean toDisplay = Standard_True);
// creates an ISession_Curve based on the given geometric curve
// and displays it in the viewer if toDisplay = Standard_True
- Handle_AIS_InteractiveObject drawCurve (const Handle_Geom2d_Curve& theCurve,
+ Handle(AIS_InteractiveObject) drawCurve (const Handle(Geom2d_Curve)& theCurve,
const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_RED),
const Standard_Boolean toDisplay = Standard_True,
const gp_Ax2& aPosition = gp::XOY());
// converts a given curve to 3d using aPosition and calls the previous method
- Handle_AIS_Point drawPoint (const gp_Pnt& thePnt,
+ Handle(AIS_Point) drawPoint (const gp_Pnt& thePnt,
const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_GREEN),
const Standard_Boolean toDisplay = Standard_True);
// creates a presentation of the given point
// and displays it in the viewer if toDisplay = Standard_True
- Handle_AIS_InteractiveObject drawVector (const gp_Pnt& thePnt,
+ Handle(AIS_InteractiveObject) drawVector (const gp_Pnt& thePnt,
const gp_Vec& theVec,
const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_YELLOW),
const Standard_Boolean toDisplay = Standard_True);
// creates a presentation of the given vector
// and displays it in the viewer if toDisplay = Standard_True
- Handle_AIS_Shape drawShape (const TopoDS_Shape& theShape,
+ Handle(AIS_Shape) drawShape (const TopoDS_Shape& theShape,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay = Standard_True);
// creates a presentation of the given shape
// with material PLASTIC and a given color
// and displays it in the viewer if toDisplay = Standard_True
- Handle_AIS_Shape drawShape (const TopoDS_Shape& theShape,
+ Handle(AIS_Shape) drawShape (const TopoDS_Shape& theShape,
const Graphic3d_NameOfMaterial theMaterial = Graphic3d_NOM_BRASS,
const Standard_Boolean toDisplay = Standard_True);
// creates a presentation of the given shape with the given material
diff --git a/samples/mfc/standard/07_Triangulation/src/Tesselate_Presentation.cpp b/samples/mfc/standard/07_Triangulation/src/Tesselate_Presentation.cpp
index 0e5b8f6dfa..d835ec877f 100755
--- a/samples/mfc/standard/07_Triangulation/src/Tesselate_Presentation.cpp
+++ b/samples/mfc/standard/07_Triangulation/src/Tesselate_Presentation.cpp
@@ -122,7 +122,7 @@ void Tesselate_Presentation::tesselateShape(const TopoDS_Shape& aShape)
" TopLoc_Location aLocation;" EOL EOL
" // takes the triangulation of the face aFace:" EOL
- " Handle_Poly_Triangulation aTr = BRep_Tool::Triangulation(aFace,aLocation);" EOL EOL
+ " Handle(Poly_Triangulation) aTr = BRep_Tool::Triangulation(aFace,aLocation);" EOL EOL
" if(!aTr.IsNull()) // if this triangulation is not NULL" EOL
" { " EOL
@@ -160,7 +160,7 @@ void Tesselate_Presentation::tesselateShape(const TopoDS_Shape& aShape)
" if(!aEdge.IsNull()) // if this edge is not NULL" EOL
" {" EOL
" // takes the polygon associated to the edge aEdge:" EOL
- " Handle_Poly_PolygonOnTriangulation aPol = " EOL
+ " Handle(Poly_PolygonOnTriangulation) aPol = " EOL
" BRep_Tool::PolygonOnTriangulation(aEdge,aTr,aEdge.Location());" EOL EOL
" if(!aPol.IsNull()) // if this polygon is not NULL" EOL
@@ -197,7 +197,7 @@ void Tesselate_Presentation::tesselateShape(const TopoDS_Shape& aShape)
Standard_Integer aNumOfNodes = 0;
Standard_Integer aNumOfTriangles = 0;
- Handle_AIS_InteractiveObject aShowEdge,aShowFace,aShowShape;
+ Handle(AIS_InteractiveObject) aShowEdge,aShowFace,aShowShape;
TopExp_Explorer aExpFace,aExpEdge;
@@ -208,7 +208,7 @@ void Tesselate_Presentation::tesselateShape(const TopoDS_Shape& aShape)
TopoDS_Face aFace = TopoDS::Face(aExpFace.Current());
TopLoc_Location aLocation;
- Handle_Poly_Triangulation aTr = BRep_Tool::Triangulation(aFace,aLocation);
+ Handle(Poly_Triangulation) aTr = BRep_Tool::Triangulation(aFace,aLocation);
if(!aTr.IsNull())
{
@@ -232,7 +232,7 @@ void Tesselate_Presentation::tesselateShape(const TopoDS_Shape& aShape)
if(!aEdge.IsNull())
{
- Handle_Poly_PolygonOnTriangulation aPol =
+ Handle(Poly_PolygonOnTriangulation) aPol =
BRep_Tool::PolygonOnTriangulation(aEdge,aTr,aEdge.Location());
if(!aPol.IsNull())
diff --git a/samples/mfc/standard/08_HLR/src/HLRDoc.h b/samples/mfc/standard/08_HLR/src/HLRDoc.h
index 85c9768e1e..ff8382f24e 100755
--- a/samples/mfc/standard/08_HLR/src/HLRDoc.h
+++ b/samples/mfc/standard/08_HLR/src/HLRDoc.h
@@ -47,11 +47,11 @@ public :
void ActivateFrame(CRuntimeClass* pViewClass, int nCmdShow = SW_RESTORE );
private:
- Handle_V3d_Viewer my2DViewer;
- Handle_AIS_InteractiveContext myInteractiveContext2D;
+ Handle(V3d_Viewer) my2DViewer;
+ Handle(AIS_InteractiveContext) myInteractiveContext2D;
public :
- Handle_V3d_Viewer GetViewer2D() { return my2DViewer; };
- Handle_AIS_InteractiveContext& GetInteractiveContext2D(){ return myInteractiveContext2D; };
+ Handle(V3d_Viewer) GetViewer2D() { return my2DViewer; };
+ Handle(AIS_InteractiveContext)& GetInteractiveContext2D(){ return myInteractiveContext2D; };
void FitAll2DViews(Standard_Boolean UpdateViewer=Standard_False);
public :
diff --git a/samples/mfc/standard/09_Animation/src/AnimationDoc.cpp b/samples/mfc/standard/09_Animation/src/AnimationDoc.cpp
index fe20d311d7..0545d44950 100755
--- a/samples/mfc/standard/09_Animation/src/AnimationDoc.cpp
+++ b/samples/mfc/standard/09_Animation/src/AnimationDoc.cpp
@@ -380,7 +380,7 @@ void CAnimationDoc::OnFileLoadgrid()
CString C = dlg.GetPathName();
SetCursor(AfxGetApp()->LoadStandardCursor(IDC_WAIT));
- Handle_Geom_BSplineSurface mySurface;
+ Handle(Geom_BSplineSurface) mySurface;
if(grid2surf(C,mySurface ))
{
diff --git a/samples/mfc/standard/09_Animation/src/AnimationDoc.h b/samples/mfc/standard/09_Animation/src/AnimationDoc.h
index c847d79411..fa5c4cd85d 100755
--- a/samples/mfc/standard/09_Animation/src/AnimationDoc.h
+++ b/samples/mfc/standard/09_Animation/src/AnimationDoc.h
@@ -71,11 +71,11 @@ protected:
DECLARE_MESSAGE_MAP()
private:
- Handle_AIS_Shape myAisCrankArm ;
- Handle_AIS_Shape myAisCylinderHead ;
- Handle_AIS_Shape myAisPropeller ;
- Handle_AIS_Shape myAisPiston ;
- Handle_AIS_Shape myAisEngineBlock ;
+ Handle(AIS_Shape) myAisCrankArm ;
+ Handle(AIS_Shape) myAisCylinderHead ;
+ Handle(AIS_Shape) myAisPropeller ;
+ Handle(AIS_Shape) myAisPiston ;
+ Handle(AIS_Shape) myAisEngineBlock ;
Standard_Real myDeviation;
Standard_Integer myAngle;
diff --git a/samples/mfc/standard/09_Animation/src/AnimationView3D.h b/samples/mfc/standard/09_Animation/src/AnimationView3D.h
index 19822c8c8e..ae7dfa452f 100755
--- a/samples/mfc/standard/09_Animation/src/AnimationView3D.h
+++ b/samples/mfc/standard/09_Animation/src/AnimationView3D.h
@@ -126,9 +126,9 @@ protected:
DECLARE_MESSAGE_MAP()
private:
- Handle_V3d_View myView;
+ Handle(V3d_View) myView;
public:
- Handle_V3d_View& GetView() { return myView;};
+ Handle(V3d_View)& GetView() { return myView;};
void DisplayTuneDialog();
private:
Standard_Integer myXmin;
diff --git a/samples/mfc/standard/10_Convert/src/Convert_Presentation.cpp b/samples/mfc/standard/10_Convert/src/Convert_Presentation.cpp
index e91b20612f..2724bb9b82 100755
--- a/samples/mfc/standard/10_Convert/src/Convert_Presentation.cpp
+++ b/samples/mfc/standard/10_Convert/src/Convert_Presentation.cpp
@@ -86,7 +86,7 @@ void Convert_Presentation::DoSample()
// Function : Convert_Presentation::drawSurfaceAndItsBSpline
// Purpose :
//================================================================
-void Convert_Presentation::drawSurfaceAndItsBSpline(const Handle_Geom_Surface & theSurface,
+void Convert_Presentation::drawSurfaceAndItsBSpline(const Handle(Geom_Surface) & theSurface,
const Standard_CString theName,
TCollection_AsciiString& theText)
{
@@ -95,7 +95,7 @@ void Convert_Presentation::drawSurfaceAndItsBSpline(const Handle_Geom_Surface &
aTitle += " to BSpline surface";
theText += EOL
- " Handle_Geom_BSplineSurface aBSplineSurface = " EOL
+ " Handle(Geom_BSplineSurface) aBSplineSurface = " EOL
" GeomConvert::SurfaceToBSplineSurface(aSurface);" EOL;
setResultTitle (aTitle.ToCString());
@@ -105,7 +105,7 @@ void Convert_Presentation::drawSurfaceAndItsBSpline(const Handle_Geom_Surface &
if (WAIT_A_LITTLE) return;
- Handle_Geom_BSplineSurface aBSplineSurface = GeomConvert::SurfaceToBSplineSurface(theSurface);
+ Handle(Geom_BSplineSurface) aBSplineSurface = GeomConvert::SurfaceToBSplineSurface(theSurface);
_ASSERTE(!aBSplineSurface.IsNull());
@@ -116,7 +116,7 @@ void Convert_Presentation::drawSurfaceAndItsBSpline(const Handle_Geom_Surface &
// Function : Convert_Presentation::drawCurveAndItsBSpline
// Purpose :
//================================================================
-void Convert_Presentation::drawCurveAndItsBSpline(Handle_Geom_Curve theCurve,
+void Convert_Presentation::drawCurveAndItsBSpline(Handle(Geom_Curve) theCurve,
const Standard_CString theName,
TCollection_AsciiString& theText)
{
@@ -125,7 +125,7 @@ void Convert_Presentation::drawCurveAndItsBSpline(Handle_Geom_Curve theCurve,
aTitle += " to BSpline curve";
theText += EOL
- " Handle_Geom_BSplineCurve aBSpline = " EOL
+ " Handle(Geom_BSplineCurve) aBSpline = " EOL
" GeomConvert::CurveToBSplineCurve(aCurve);" EOL;
setResultTitle (aTitle.ToCString());
@@ -135,7 +135,7 @@ void Convert_Presentation::drawCurveAndItsBSpline(Handle_Geom_Curve theCurve,
if (WAIT_A_LITTLE) return;
- Handle_Geom_BSplineCurve aBSpline = GeomConvert::CurveToBSplineCurve(theCurve);
+ Handle(Geom_BSplineCurve) aBSpline = GeomConvert::CurveToBSplineCurve(theCurve);
drawCurve (Handle(Geom_Curve)::DownCast(aBSpline), BSplineColor);
}
@@ -155,7 +155,7 @@ void Convert_Presentation::sampleCircle()
gp_Dir aDir (1,0,0);
gp_Ax2 aAxis (aOrigin, aDir);
Standard_Real aRadius = 300;
- Handle_Geom_Circle aCurve = new Geom_Circle (aAxis, aRadius);
+ Handle(Geom_Circle) aCurve = new Geom_Circle (aAxis, aRadius);
TCollection_AsciiString aText (
" gp_Pnt aOrigin (0,0,0);" EOL
diff --git a/samples/mfc/standard/10_Convert/src/Convert_Presentation.h b/samples/mfc/standard/10_Convert/src/Convert_Presentation.h
index 24cc9b6cd5..1652113044 100755
--- a/samples/mfc/standard/10_Convert/src/Convert_Presentation.h
+++ b/samples/mfc/standard/10_Convert/src/Convert_Presentation.h
@@ -38,10 +38,10 @@ private:
void sampleConicalSurface();
void sampleSphericalSurface();
- void drawCurveAndItsBSpline (Handle_Geom_Curve theCurve,
+ void drawCurveAndItsBSpline (Handle(Geom_Curve) theCurve,
const Standard_CString theName, TCollection_AsciiString& theText);
- void drawSurfaceAndItsBSpline (const Handle_Geom_Surface & theSurface,
+ void drawSurfaceAndItsBSpline (const Handle(Geom_Surface) & theSurface,
const Standard_CString theName, TCollection_AsciiString& theText);
private:
diff --git a/samples/mfc/standard/10_Convert/src/ISession/ISession_Curve.cpp b/samples/mfc/standard/10_Convert/src/ISession/ISession_Curve.cpp
index 97a4326955..839a7a7aee 100755
--- a/samples/mfc/standard/10_Convert/src/ISession/ISession_Curve.cpp
+++ b/samples/mfc/standard/10_Convert/src/ISession/ISession_Curve.cpp
@@ -10,7 +10,6 @@
#include
#include
-IMPLEMENT_STANDARD_HANDLE(ISession_Curve,AIS_InteractiveObject)
IMPLEMENT_STANDARD_RTTIEXT(ISession_Curve,AIS_InteractiveObject)
#ifdef _DEBUG
diff --git a/samples/mfc/standard/10_Convert/src/ISession/ISession_Curve.h b/samples/mfc/standard/10_Convert/src/ISession/ISession_Curve.h
index b89cba6b68..fa99e1e5ae 100755
--- a/samples/mfc/standard/10_Convert/src/ISession/ISession_Curve.h
+++ b/samples/mfc/standard/10_Convert/src/ISession/ISession_Curve.h
@@ -20,7 +20,7 @@ class ISession_Curve : public AIS_InteractiveObject
public:
ISession_Curve(const Handle(Geom_Curve)& aCurve);
virtual ~ISession_Curve();
-DEFINE_STANDARD_RTTI(ISession_Curve,AIS_InteractiveObject)
+DEFINE_STANDARD_RTTIEXT(ISession_Curve,AIS_InteractiveObject)
private:
Standard_EXPORT virtual void Compute(const Handle(PrsMgr_PresentationManager3d)& aPresentationManager,const Handle(Prs3d_Presentation)& aPresentation,const Standard_Integer aMode = 0) ;
diff --git a/samples/mfc/standard/10_Convert/src/OCCDemo_Presentation.cpp b/samples/mfc/standard/10_Convert/src/OCCDemo_Presentation.cpp
index 89ceabb9d6..4b3554b31a 100755
--- a/samples/mfc/standard/10_Convert/src/OCCDemo_Presentation.cpp
+++ b/samples/mfc/standard/10_Convert/src/OCCDemo_Presentation.cpp
@@ -77,8 +77,8 @@ static Standard_Boolean fixParam(Standard_Real& theParam)
// Purpose : displays a given geometric surface in 3d viewer
// (creates a finite face and displays it)
//================================================================
-Handle_AIS_InteractiveObject OCCDemo_Presentation::drawSurface
- (const Handle_Geom_Surface& theSurface,
+Handle(AIS_InteractiveObject) OCCDemo_Presentation::drawSurface
+ (const Handle(Geom_Surface)& theSurface,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay)
{
@@ -89,7 +89,7 @@ Handle_AIS_InteractiveObject OCCDemo_Presentation::drawSurface
fixParam(v1);
fixParam(v2);
- Handle_AIS_Shape aGraphicSurface =
+ Handle(AIS_Shape) aGraphicSurface =
new AIS_Shape(BRepBuilderAPI_MakeFace (theSurface, u1, u2, v1, v2, Precision::Confusion()));
getAISContext()->SetMaterial(aGraphicSurface, Graphic3d_NOM_PLASTIC, toDisplay);
@@ -110,8 +110,8 @@ Handle_AIS_InteractiveObject OCCDemo_Presentation::drawSurface
// Function : DrawCurve
// Purpose : displays a given curve 3d
//================================================================
-Handle_AIS_InteractiveObject OCCDemo_Presentation::drawCurve
- (const Handle_Geom_Curve& theCurve,
+Handle(AIS_InteractiveObject) OCCDemo_Presentation::drawCurve
+ (const Handle(Geom_Curve)& theCurve,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay)
{
@@ -135,8 +135,8 @@ Handle_AIS_InteractiveObject OCCDemo_Presentation::drawCurve
// Function : DrawCurve
// Purpose : displays a given curve 2d
//================================================================
-Handle_AIS_InteractiveObject OCCDemo_Presentation::drawCurve
- (const Handle_Geom2d_Curve& theCurve,
+Handle(AIS_InteractiveObject) OCCDemo_Presentation::drawCurve
+ (const Handle(Geom2d_Curve)& theCurve,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay,
const gp_Ax2& aPosition)
@@ -163,7 +163,7 @@ Handle_AIS_InteractiveObject OCCDemo_Presentation::drawCurve
// Function : drawPoint
// Purpose : displays a given point
//================================================================
-Handle_AIS_Point OCCDemo_Presentation::drawPoint
+Handle(AIS_Point) OCCDemo_Presentation::drawPoint
(const gp_Pnt& aPnt,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay)
@@ -185,7 +185,7 @@ Handle_AIS_Point OCCDemo_Presentation::drawPoint
// (segment of line starting at thePnt with the arrow at the end,
// the length of segment is the length of the vector)
//================================================================
-Handle_AIS_InteractiveObject OCCDemo_Presentation::drawVector
+Handle(AIS_InteractiveObject) OCCDemo_Presentation::drawVector
(const gp_Pnt& thePnt,
const gp_Vec& theVec,
const Quantity_Color& theColor,
@@ -217,11 +217,11 @@ Handle_AIS_InteractiveObject OCCDemo_Presentation::drawVector
}
-Handle_AIS_Shape OCCDemo_Presentation::drawShape
+Handle(AIS_Shape) OCCDemo_Presentation::drawShape
(const TopoDS_Shape& theShape,const Quantity_Color& theColor,
const Standard_Boolean toDisplay)
{
- Handle_AIS_Shape aGraphicShape = new AIS_Shape(theShape);
+ Handle(AIS_Shape) aGraphicShape = new AIS_Shape(theShape);
getAISContext()->SetMaterial(aGraphicShape, Graphic3d_NOM_PLASTIC, toDisplay);
getAISContext()->SetColor (aGraphicShape, theColor, toDisplay);
@@ -237,12 +237,12 @@ Handle_AIS_Shape OCCDemo_Presentation::drawShape
return aGraphicShape;
}
-Handle_AIS_Shape OCCDemo_Presentation::drawShape
+Handle(AIS_Shape) OCCDemo_Presentation::drawShape
(const TopoDS_Shape& theShape,
const Graphic3d_NameOfMaterial theMaterial,
const Standard_Boolean toDisplay)
{
- Handle_AIS_Shape aGraphicShape = new AIS_Shape(theShape);
+ Handle(AIS_Shape) aGraphicShape = new AIS_Shape(theShape);
getAISContext()->SetMaterial(aGraphicShape, theMaterial, toDisplay);
if (toDisplay) {
diff --git a/samples/mfc/standard/10_Convert/src/OCCDemo_Presentation.h b/samples/mfc/standard/10_Convert/src/OCCDemo_Presentation.h
index 8f14f0bdb2..89b1f18aee 100755
--- a/samples/mfc/standard/10_Convert/src/OCCDemo_Presentation.h
+++ b/samples/mfc/standard/10_Convert/src/OCCDemo_Presentation.h
@@ -65,8 +65,8 @@ public:
protected:
// Methods to call from a derivable class
void setName (const char* theName) {myName = CString(theName);}
- Handle_AIS_InteractiveContext getAISContext() const {return myDoc->GetAISContext();}
- Handle_V3d_Viewer getViewer() const {return myDoc->GetViewer();}
+ Handle(AIS_InteractiveContext) getAISContext() const {return myDoc->GetAISContext();}
+ Handle(V3d_Viewer) getViewer() const {return myDoc->GetViewer();}
void setResultTitle (const char* theTitle) {myDoc->GetResultDialog()->SetTitle(theTitle);}
void setResultText (const char* theText) {myDoc->GetResultDialog()->SetText(theText);}
Standard_CString GetDataDir() {return myDoc->GetDataDir();}
@@ -74,45 +74,45 @@ protected:
Standard_Boolean WaitForInput (unsigned long aMilliSeconds);
// Waits for a user input or a period of time has been elapsed
- Handle_AIS_InteractiveObject drawSurface (const Handle_Geom_Surface& theSurface,
+ Handle(AIS_InteractiveObject) drawSurface (const Handle(Geom_Surface)& theSurface,
const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_LEMONCHIFFON3),
const Standard_Boolean toDisplay = Standard_True);
// creates a finite face based on the given geometric surface
// and displays it in the viewer if toDisplay = Standard_True
- Handle_AIS_InteractiveObject drawCurve (const Handle_Geom_Curve& theCurve,
+ Handle(AIS_InteractiveObject) drawCurve (const Handle(Geom_Curve)& theCurve,
const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_RED),
const Standard_Boolean toDisplay = Standard_True);
// creates an ISession_Curve based on the given geometric curve
// and displays it in the viewer if toDisplay = Standard_True
- Handle_AIS_InteractiveObject drawCurve (const Handle_Geom2d_Curve& theCurve,
+ Handle(AIS_InteractiveObject) drawCurve (const Handle(Geom2d_Curve)& theCurve,
const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_RED),
const Standard_Boolean toDisplay = Standard_True,
const gp_Ax2& aPosition = gp::XOY());
// converts a given curve to 3d using aPosition and calls the previous method
- Handle_AIS_Point drawPoint (const gp_Pnt& thePnt,
+ Handle(AIS_Point) drawPoint (const gp_Pnt& thePnt,
const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_GREEN),
const Standard_Boolean toDisplay = Standard_True);
// creates a presentation of the given point
// and displays it in the viewer if toDisplay = Standard_True
- Handle_AIS_InteractiveObject drawVector (const gp_Pnt& thePnt,
+ Handle(AIS_InteractiveObject) drawVector (const gp_Pnt& thePnt,
const gp_Vec& theVec,
const Quantity_Color& theColor = Quantity_Color(Quantity_NOC_YELLOW),
const Standard_Boolean toDisplay = Standard_True);
// creates a presentation of the given vector
// and displays it in the viewer if toDisplay = Standard_True
- Handle_AIS_Shape drawShape (const TopoDS_Shape& theShape,
+ Handle(AIS_Shape) drawShape (const TopoDS_Shape& theShape,
const Quantity_Color& theColor,
const Standard_Boolean toDisplay = Standard_True);
// creates a presentation of the given shape
// with material PLASTIC and a given color
// and displays it in the viewer if toDisplay = Standard_True
- Handle_AIS_Shape drawShape (const TopoDS_Shape& theShape,
+ Handle(AIS_Shape) drawShape (const TopoDS_Shape& theShape,
const Graphic3d_NameOfMaterial theMaterial = Graphic3d_NOM_BRASS,
const Standard_Boolean toDisplay = Standard_True);
// creates a presentation of the given shape with the given material
diff --git a/samples/mfc/standard/10_Convert/src/WNT/OCCDemoView.h b/samples/mfc/standard/10_Convert/src/WNT/OCCDemoView.h
index 6bfa56e5f9..63a930be01 100755
--- a/samples/mfc/standard/10_Convert/src/WNT/OCCDemoView.h
+++ b/samples/mfc/standard/10_Convert/src/WNT/OCCDemoView.h
@@ -108,8 +108,8 @@ private:
private:
enum VisMode { VIS_WIREFRAME, VIS_SHADE, VIS_HLR };
- Handle_V3d_View myView;
- Handle_Graphic3d_GraphicDriver myGraphicDriver;
+ Handle(V3d_View) myView;
+ Handle(Graphic3d_GraphicDriver) myGraphicDriver;
View3D_CurrentAction myCurrentMode;
VisMode myVisMode;
Standard_Integer myXmin;
diff --git a/samples/mfc/standard/Common/AISDialogs.cpp b/samples/mfc/standard/Common/AISDialogs.cpp
index 969561b0f7..944c506d3a 100755
--- a/samples/mfc/standard/Common/AISDialogs.cpp
+++ b/samples/mfc/standard/Common/AISDialogs.cpp
@@ -19,7 +19,7 @@
/////////////////////////////////////////////////////////////////////////////
// CAISNbrIsosDialog dialog
-//CAISNbrIsosDialog::CAISNbrIsosDialog(Handle_AIS_InteractiveContext CurrentIC,
+//CAISNbrIsosDialog::CAISNbrIsosDialog(Handle(AIS_InteractiveContext) CurrentIC,
// CWnd* pParent /*=NULL*/)
// : CDialog(CAISNbrIsosDialog::IDD, pParent)
/*
@@ -120,7 +120,7 @@ void CAISNbrIsosDialog::UpdateIsos ()
// CDevCoeffDialog dialog
-//CDevCoeffDialog::CDevCoeffDialog(Handle_AIS_InteractiveContext CurrentIC,
+//CDevCoeffDialog::CDevCoeffDialog(Handle(AIS_InteractiveContext) CurrentIC,
// CWnd* pParent /*=NULL*/)
// : CDialog(CDevCoeffDialog::IDD, pParent)
/*
@@ -247,7 +247,7 @@ void CDevCoeffDialog::RedisplaySelected ()
// CDialogMaterial dialog
-CDialogMaterial::CDialogMaterial(Handle_AIS_InteractiveContext CurrentIC,
+CDialogMaterial::CDialogMaterial(Handle(AIS_InteractiveContext) CurrentIC,
CWnd* pParent /*=NULL*/)
: CDialog(CDialogMaterial::IDD, pParent)
{
@@ -344,7 +344,7 @@ void CDialogMaterial::OnObjectMaterialDefault () { SetMaterial ( Graphic3d_NO
/////////////////////////////////////////////////////////////////////////////
// CDialogTransparency dialog
-CDialogTransparency::CDialogTransparency(Handle_AIS_InteractiveContext CurrentIC,
+CDialogTransparency::CDialogTransparency(Handle(AIS_InteractiveContext) CurrentIC,
CWnd* pParent /*=NULL*/)
: CDialog(CDialogTransparency::IDD, pParent)
{
diff --git a/samples/mfc/standard/Common/AISDialogs.h b/samples/mfc/standard/Common/AISDialogs.h
index 2ef3eacf7c..4487f03698 100755
--- a/samples/mfc/standard/Common/AISDialogs.h
+++ b/samples/mfc/standard/Common/AISDialogs.h
@@ -20,7 +20,7 @@ class CAISNbrIsosDialog : public CDialog
{
// Construction
public:
- CAISNbrIsosDialog(Handle_AIS_InteractiveContext CurrentIC,
+ CAISNbrIsosDialog(Handle(AIS_InteractiveContext) CurrentIC,
CWnd* pParent = NULL); // standard constructor
// Dialog Data
@@ -103,7 +103,7 @@ protected:
private:
void RedisplaySelected ();
- Handle_AIS_InteractiveContext myCurrentIC;
+ Handle(AIS_InteractiveContext) myCurrentIC;
};
*/
@@ -160,7 +160,7 @@ protected:
private:
void SetMaterial (Graphic3d_NameOfMaterial Material);
- Handle_AIS_InteractiveContext myCurrentIC;
+ Handle(AIS_InteractiveContext) myCurrentIC;
};
@@ -168,7 +168,7 @@ class Standard_EXPORT CDialogTransparency : public CDialog
{
// Construction
public:
- CDialogTransparency(Handle_AIS_InteractiveContext CurrentIC,
+ CDialogTransparency(Handle(AIS_InteractiveContext) CurrentIC,
CWnd* pParent = NULL); // standard constructor
// Dialog Data
@@ -196,7 +196,7 @@ protected:
DECLARE_MESSAGE_MAP()
private:
- Handle_AIS_InteractiveContext myCurrentIC;
+ Handle(AIS_InteractiveContext) myCurrentIC;
};
diff --git a/samples/mfc/standard/Common/DimensionDlg.cpp b/samples/mfc/standard/Common/DimensionDlg.cpp
index 317132c234..8fd754f60a 100644
--- a/samples/mfc/standard/Common/DimensionDlg.cpp
+++ b/samples/mfc/standard/Common/DimensionDlg.cpp
@@ -767,7 +767,7 @@ void CDimensionDlg::OnClose()
TopoDS_Shape CDimensionDlg::SelectedShape()
{
Handle(Standard_Transient) aSelection = AIS_Selection::CurrentSelection()->Value();
- Handle(SelectMgr_EntityOwner) anOwner = *((Handle(SelectMgr_EntityOwner)*)&aSelection);
+ Handle(SelectMgr_EntityOwner) anOwner = Handle(SelectMgr_EntityOwner)::DownCast (aSelection);
Handle(StdSelect_BRepOwner) aBrepOwner = Handle(StdSelect_BRepOwner)::DownCast(anOwner);
return aBrepOwner->Shape().Located (aBrepOwner->Location() * aBrepOwner->Shape().Location());
}
diff --git a/samples/mfc/standard/Common/ISession2D/ISession2D_Shape.cpp b/samples/mfc/standard/Common/ISession2D/ISession2D_Shape.cpp
index f95256a033..cba3ecf2e2 100755
--- a/samples/mfc/standard/Common/ISession2D/ISession2D_Shape.cpp
+++ b/samples/mfc/standard/Common/ISession2D/ISession2D_Shape.cpp
@@ -6,7 +6,6 @@
#include
#include
-IMPLEMENT_STANDARD_HANDLE(ISession2D_Shape,AIS_InteractiveObject)
IMPLEMENT_STANDARD_RTTIEXT(ISession2D_Shape,AIS_InteractiveObject)
ISession2D_Shape::ISession2D_Shape ()
diff --git a/samples/mfc/standard/Common/ISession2D/ISession2D_Shape.h b/samples/mfc/standard/Common/ISession2D/ISession2D_Shape.h
index 0c4c53c3b0..47f9ecd3e8 100755
--- a/samples/mfc/standard/Common/ISession2D/ISession2D_Shape.h
+++ b/samples/mfc/standard/Common/ISession2D/ISession2D_Shape.h
@@ -41,7 +41,7 @@ public:
{ return Standard_True; }
public:
- DEFINE_STANDARD_RTTI(ISession2D_Shape,AIS_InteractiveObject)
+ DEFINE_STANDARD_RTTIEXT(ISession2D_Shape,AIS_InteractiveObject)
private:
void BuildAlgo();
diff --git a/samples/mfc/standard/Common/ImportExport/ImportExport.cpp b/samples/mfc/standard/Common/ImportExport/ImportExport.cpp
index 4efa0cabc8..0b239fd97b 100755
--- a/samples/mfc/standard/Common/ImportExport/ImportExport.cpp
+++ b/samples/mfc/standard/Common/ImportExport/ImportExport.cpp
@@ -92,12 +92,12 @@ Handle(TopTools_HSequenceOfShape) CImportExport::BuildSequenceFromContext(const
//= =
//======================================================================
-int CImportExport::ReadBREP (const Handle_AIS_InteractiveContext& anInteractiveContext)
+int CImportExport::ReadBREP (const Handle(AIS_InteractiveContext)& anInteractiveContext)
{
Handle(TopTools_HSequenceOfShape) aSequence = CImportExport::ReadBREP();
if(aSequence->IsEmpty())
return 1;
- Handle_AIS_Shape aShape;
+ Handle(AIS_Shape) aShape;
for(int i=1;i<= aSequence->Length();i++){
aShape = new AIS_Shape(aSequence->Value(i));
anInteractiveContext->SetDisplayMode(aShape, 1, Standard_False);
@@ -164,7 +164,7 @@ Standard_Boolean CImportExport::ReadBREP(CString aFileName,
return !aShape.IsNull();
}
-void CImportExport::SaveBREP(const Handle_AIS_InteractiveContext& anInteractiveContext)
+void CImportExport::SaveBREP(const Handle(AIS_InteractiveContext)& anInteractiveContext)
{
anInteractiveContext->InitCurrent();
if (anInteractiveContext->NbCurrents() == 0){
diff --git a/samples/mfc/standard/Common/ImportExport/ImportExport.h b/samples/mfc/standard/Common/ImportExport/ImportExport.h
index df38b44d3c..92f35c3a7e 100755
--- a/samples/mfc/standard/Common/ImportExport/ImportExport.h
+++ b/samples/mfc/standard/Common/ImportExport/ImportExport.h
@@ -34,13 +34,13 @@ public :
//======================================================================
// return is HSequence to be able to select a set of files
- static int ReadBREP(const Handle_AIS_InteractiveContext& anInteractiveContext);
- static Handle_TopTools_HSequenceOfShape ReadBREP();
+ static int ReadBREP(const Handle(AIS_InteractiveContext)& anInteractiveContext);
+ static Handle(TopTools_HSequenceOfShape) ReadBREP();
static Standard_Boolean ReadBREP(CString aFileName,
TopoDS_Shape& aShape);
//----------------------------------------------------------------------
- static void SaveBREP(const Handle_AIS_InteractiveContext& anInteractiveContext);
+ static void SaveBREP(const Handle(AIS_InteractiveContext)& anInteractiveContext);
static Standard_Boolean SaveBREP(const TopoDS_Shape& aShape);
static Standard_Boolean SaveBREP(CString aFileName,
const TopoDS_Shape& aShape);
diff --git a/samples/mfc/standard/Common/OCC_2dDoc.h b/samples/mfc/standard/Common/OCC_2dDoc.h
index a788792a71..7186c1ebc7 100755
--- a/samples/mfc/standard/Common/OCC_2dDoc.h
+++ b/samples/mfc/standard/Common/OCC_2dDoc.h
@@ -30,7 +30,7 @@ public: // New operations
public: // getters
- Handle_V3d_Viewer GetViewer2D () { return myViewer; };
+ Handle(V3d_Viewer) GetViewer2D () { return myViewer; };
Handle(AIS_InteractiveContext)& GetInteractiveContext() { return myAISContext; };
diff --git a/samples/mfc/standard/Common/OCC_2dView.h b/samples/mfc/standard/Common/OCC_2dView.h
index 904cbae868..eaa03d6c94 100755
--- a/samples/mfc/standard/Common/OCC_2dView.h
+++ b/samples/mfc/standard/Common/OCC_2dView.h
@@ -138,7 +138,7 @@ protected:
CRectangularGrid TheRectangularGridDialog;
CCircularGrid TheCircularGridDialog;
- Handle_V3d_View myV2dView;
+ Handle(V3d_View) myV2dView;
};
#ifndef _DEBUG // debug version in 2DDisplayView.cpp
diff --git a/samples/mfc/standard/Common/OCC_3dBaseDoc.cpp b/samples/mfc/standard/Common/OCC_3dBaseDoc.cpp
index 0655c57d37..fd8a98f3eb 100755
--- a/samples/mfc/standard/Common/OCC_3dBaseDoc.cpp
+++ b/samples/mfc/standard/Common/OCC_3dBaseDoc.cpp
@@ -257,7 +257,7 @@ void OCC_3dBaseDoc::OnFileExportBrep()
void OCC_3dBaseDoc::OnObjectColor()
{
- Handle_AIS_InteractiveObject Current ;
+ Handle(AIS_InteractiveObject) Current ;
COLORREF MSColor ;
Quantity_Color CSFColor ;
diff --git a/samples/mfc/standard/Common/OCC_3dView.h b/samples/mfc/standard/Common/OCC_3dView.h
index 8bcbb2c586..dfe79291de 100755
--- a/samples/mfc/standard/Common/OCC_3dView.h
+++ b/samples/mfc/standard/Common/OCC_3dView.h
@@ -36,7 +36,7 @@ public:
void SetZoom ( const Quantity_Factor& Coef ) { myView->SetZoom ( Coef ); };
- Handle_V3d_View& GetView() { return myView; }
+ Handle(V3d_View)& GetView() { return myView; }
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(OCC_3dView)
@@ -94,7 +94,7 @@ protected:
protected:
- Handle_V3d_View myView;
+ Handle(V3d_View) myView;
CurAction3d myCurrentMode;
Standard_Integer myXmin;
Standard_Integer myYmin;
diff --git a/samples/mfc/standard/Common/OCC_App.h b/samples/mfc/standard/Common/OCC_App.h
index b3e402cb6d..c5a4155864 100755
--- a/samples/mfc/standard/Common/OCC_App.h
+++ b/samples/mfc/standard/Common/OCC_App.h
@@ -21,7 +21,7 @@ public:
const wchar_t* GetInitDataDir() const;
void SetSamplePath (const wchar_t* thePath);
OCC_App();
- Handle_Graphic3d_GraphicDriver GetGraphicDriver() const
+ Handle(Graphic3d_GraphicDriver) GetGraphicDriver() const
{
return myGraphicDriver;
}
@@ -36,7 +36,7 @@ public:
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
protected:
- Handle_Graphic3d_GraphicDriver myGraphicDriver;
+ Handle(Graphic3d_GraphicDriver) myGraphicDriver;
public:
CString SampleName;
CString SamplePath;
diff --git a/samples/mfc/standard/Common/Primitive/Sample2D_Face.cpp b/samples/mfc/standard/Common/Primitive/Sample2D_Face.cpp
index f34f293337..d2e227a9f0 100755
--- a/samples/mfc/standard/Common/Primitive/Sample2D_Face.cpp
+++ b/samples/mfc/standard/Common/Primitive/Sample2D_Face.cpp
@@ -2,7 +2,6 @@
#include "Sample2D_Face.h"
-IMPLEMENT_STANDARD_HANDLE(Sample2D_Face,AIS_InteractiveObject)
IMPLEMENT_STANDARD_RTTIEXT(Sample2D_Face,AIS_InteractiveObject)
Sample2D_Face::Sample2D_Face (const TopoDS_Shape& theFace)
diff --git a/samples/mfc/standard/Common/Primitive/Sample2D_Face.h b/samples/mfc/standard/Common/Primitive/Sample2D_Face.h
index 08420fe182..e511d7d449 100755
--- a/samples/mfc/standard/Common/Primitive/Sample2D_Face.h
+++ b/samples/mfc/standard/Common/Primitive/Sample2D_Face.h
@@ -21,7 +21,7 @@ public:
//
Standard_EXPORT Sample2D_Face (const TopoDS_Shape& theFace);
-DEFINE_STANDARD_RTTI(Sample2D_Face,AIS_InteractiveObject)
+DEFINE_STANDARD_RTTIEXT(Sample2D_Face,AIS_InteractiveObject)
private:
diff --git a/samples/mfc/standard/Common/Primitive/Sample2D_Image.cpp b/samples/mfc/standard/Common/Primitive/Sample2D_Image.cpp
index 1bd5164d02..f28eae1dd7 100755
--- a/samples/mfc/standard/Common/Primitive/Sample2D_Image.cpp
+++ b/samples/mfc/standard/Common/Primitive/Sample2D_Image.cpp
@@ -2,7 +2,6 @@
#include "Sample2D_Image.h"
-IMPLEMENT_STANDARD_HANDLE(Sample2D_Image,AIS_TexturedShape)
IMPLEMENT_STANDARD_RTTIEXT(Sample2D_Image,AIS_TexturedShape)
Sample2D_Image::Sample2D_Image(TCollection_AsciiString& aFileName,
diff --git a/samples/mfc/standard/Common/Primitive/Sample2D_Image.h b/samples/mfc/standard/Common/Primitive/Sample2D_Image.h
index ce6cb76dd5..c828f0516d 100755
--- a/samples/mfc/standard/Common/Primitive/Sample2D_Image.h
+++ b/samples/mfc/standard/Common/Primitive/Sample2D_Image.h
@@ -28,7 +28,7 @@ Standard_EXPORT inline Quantity_Factor GetScale() const;
Standard_EXPORT inline void SetScale(const Quantity_Factor aNewScale) ;
Standard_EXPORT virtual void SetContext(const Handle(AIS_InteractiveContext)& theContext) ;
-DEFINE_STANDARD_RTTI(Sample2D_Image,AIS_TexturedShape)
+DEFINE_STANDARD_RTTIEXT(Sample2D_Image,AIS_TexturedShape)
private:
void MakeShape();
protected:
diff --git a/samples/mfc/standard/Common/Primitive/Sample2D_Markers.cpp b/samples/mfc/standard/Common/Primitive/Sample2D_Markers.cpp
index f712192ffb..1057b1d01f 100755
--- a/samples/mfc/standard/Common/Primitive/Sample2D_Markers.cpp
+++ b/samples/mfc/standard/Common/Primitive/Sample2D_Markers.cpp
@@ -2,7 +2,6 @@
#include "Sample2D_Markers.h"
-IMPLEMENT_STANDARD_HANDLE(Sample2D_Markers,AIS_InteractiveObject)
IMPLEMENT_STANDARD_RTTIEXT(Sample2D_Markers,AIS_InteractiveObject)
// generic marker
diff --git a/samples/mfc/standard/Common/Primitive/Sample2D_Markers.h b/samples/mfc/standard/Common/Primitive/Sample2D_Markers.h
index db40295f91..007f027744 100755
--- a/samples/mfc/standard/Common/Primitive/Sample2D_Markers.h
+++ b/samples/mfc/standard/Common/Primitive/Sample2D_Markers.h
@@ -34,7 +34,7 @@ public:
const Standard_Real theScaleOrId=2.0);
-DEFINE_STANDARD_RTTI(Sample2D_Markers,AIS_InteractiveObject)
+DEFINE_STANDARD_RTTIEXT(Sample2D_Markers,AIS_InteractiveObject)
private:
diff --git a/samples/mfc/standard/Common/Primitive/Sample2D_Text.cpp b/samples/mfc/standard/Common/Primitive/Sample2D_Text.cpp
index 98d812b7ff..774ab2cac0 100755
--- a/samples/mfc/standard/Common/Primitive/Sample2D_Text.cpp
+++ b/samples/mfc/standard/Common/Primitive/Sample2D_Text.cpp
@@ -2,7 +2,6 @@
#include "Sample2D_Text.h"
-IMPLEMENT_STANDARD_HANDLE(Sample2D_Text,AIS_InteractiveObject)
IMPLEMENT_STANDARD_RTTIEXT(Sample2D_Text,AIS_InteractiveObject)
Sample2D_Text::Sample2D_Text (const TCollection_AsciiString& theText,
@@ -36,7 +35,7 @@ void Sample2D_Text::Compute (const Handle(PrsMgr_PresentationManager3d)& /*aPres
{
aPresentation->Clear();
- Handle_Prs3d_TextAspect asp = myDrawer->TextAspect();
+ Handle(Prs3d_TextAspect) asp = myDrawer->TextAspect();
asp->SetFont(myFont);
asp->SetColor(myColor);
diff --git a/samples/mfc/standard/Common/Primitive/Sample2D_Text.h b/samples/mfc/standard/Common/Primitive/Sample2D_Text.h
index e6c33d40ee..53376aa8e8 100755
--- a/samples/mfc/standard/Common/Primitive/Sample2D_Text.h
+++ b/samples/mfc/standard/Common/Primitive/Sample2D_Text.h
@@ -38,7 +38,7 @@ inline Standard_Boolean GetIsZoomable() const { return myIsZoomable; }
inline void SetIsZoomable(const Standard_Boolean theIsZoomable) { myIsZoomable = theIsZoomable;}
-DEFINE_STANDARD_RTTI(Sample2D_Text,AIS_InteractiveObject)
+DEFINE_STANDARD_RTTIEXT(Sample2D_Text,AIS_InteractiveObject)
private:
diff --git a/samples/mfc/standard/Common/User_Cylinder.cxx b/samples/mfc/standard/Common/User_Cylinder.cxx
index 0982dd1753..6803bc7542 100755
--- a/samples/mfc/standard/Common/User_Cylinder.cxx
+++ b/samples/mfc/standard/Common/User_Cylinder.cxx
@@ -4,7 +4,7 @@
// Implementation of Handle and type mgt
//
-IMPLEMENT_STANDARD_HANDLE(User_Cylinder,AIS_InteractiveObject)
+
IMPLEMENT_STANDARD_RTTIEXT(User_Cylinder,AIS_InteractiveObject)
#include "ColoredMeshDlg.h"
@@ -52,8 +52,8 @@ AIS_InteractiveObject(PrsMgr_TOP_ProjectorDependant)
myCylindricalFaceColor = Quantity_NOC_KHAKI4;
}
-void User_Cylinder::Compute(const Handle_PrsMgr_PresentationManager3d& /*aPresentationManager*/,
- const Handle_Prs3d_Presentation& aPresentation,
+void User_Cylinder::Compute(const Handle(PrsMgr_PresentationManager3d)& /*aPresentationManager*/,
+ const Handle(Prs3d_Presentation)& aPresentation,
const Standard_Integer aMode )
{
switch (aMode) {
@@ -308,14 +308,14 @@ case 6: //color
}
}
-void User_Cylinder::Compute(const Handle_Prs3d_Projector& aProjector,
- const Handle_Prs3d_Presentation& aPresentation)
+void User_Cylinder::Compute(const Handle(Prs3d_Projector)& aProjector,
+ const Handle(Prs3d_Presentation)& aPresentation)
{
myDrawer->EnableDrawHiddenLine();
StdPrs_HLRPolyShape::Add(aPresentation,myShape,myDrawer,aProjector);
}
-void User_Cylinder::ComputeSelection(const Handle_SelectMgr_Selection& aSelection,
+void User_Cylinder::ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
const Standard_Integer aMode)
{
switch(aMode)
diff --git a/samples/mfc/standard/Common/User_Cylinder.hxx b/samples/mfc/standard/Common/User_Cylinder.hxx
index 00ec669a3c..807444537b 100755
--- a/samples/mfc/standard/Common/User_Cylinder.hxx
+++ b/samples/mfc/standard/Common/User_Cylinder.hxx
@@ -28,18 +28,18 @@ public:
void SetColor(const Quantity_Color &aColor);
private:
- void Compute(const Handle_PrsMgr_PresentationManager3d& aPresentationManager,
- const Handle_Prs3d_Presentation& aPresentation,
+ void Compute(const Handle(PrsMgr_PresentationManager3d)& aPresentationManager,
+ const Handle(Prs3d_Presentation)& aPresentation,
const Standard_Integer aMode = 0) ;
- void ComputeSelection(const Handle_SelectMgr_Selection& aSelection,
+ void ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
const Standard_Integer aMode) ;
- void Compute(const Handle_Prs3d_Projector& aProjector,const Handle_Prs3d_Presentation& aPresentation);
+ void Compute(const Handle(Prs3d_Projector)& aProjector,const Handle(Prs3d_Presentation)& aPresentation);
Standard_Boolean TriangleIsValid(const gp_Pnt& P1,const gp_Pnt& P2,const gp_Pnt& P3) const;
Quantity_Color Color(gp_Pnt& thePoint,Standard_Real AltMin,Standard_Real AltMax, const Standard_Integer ColorizationMode) ;
// some methods like DynamicType() or IsKind()
//
-DEFINE_STANDARD_RTTI(User_Cylinder,AIS_InteractiveObject)
+DEFINE_STANDARD_RTTIEXT(User_Cylinder,AIS_InteractiveObject)
private:
// Quantity_NameOfColor myCylindricalFaceColor;
// Quantity_NameOfColor myPlanarFaceColor;
@@ -47,7 +47,7 @@ private:
Quantity_Color myPlanarFaceColor;
TopoDS_Shape myShape;
- Handle_Graphic3d_AspectFillArea3d myAspect;
+ Handle(Graphic3d_AspectFillArea3d) myAspect;
Standard_Real myDeflection;
Standard_Boolean myX1OnOff;
@@ -78,7 +78,7 @@ private:
-//Handle_Graphic3d_Texture2Dmanual mytexture;
+//Handle(Graphic3d_Texture2Dmanual) mytexture;
};
#endif
diff --git a/samples/qt/AndroidQt/AndroidQt_Window.cxx b/samples/qt/AndroidQt/AndroidQt_Window.cxx
index 5fc200c952..024b74dc75 100644
--- a/samples/qt/AndroidQt/AndroidQt_Window.cxx
+++ b/samples/qt/AndroidQt/AndroidQt_Window.cxx
@@ -13,7 +13,6 @@
#include
-IMPLEMENT_STANDARD_HANDLE (AndroidQt_Window, Aspect_Window)
IMPLEMENT_STANDARD_RTTIEXT(AndroidQt_Window, Aspect_Window)
// =======================================================================
diff --git a/samples/qt/AndroidQt/AndroidQt_Window.h b/samples/qt/AndroidQt/AndroidQt_Window.h
index 575b1940ea..a152c1f4e9 100644
--- a/samples/qt/AndroidQt/AndroidQt_Window.h
+++ b/samples/qt/AndroidQt/AndroidQt_Window.h
@@ -86,7 +86,7 @@ private:
public:
- DEFINE_STANDARD_RTTI(AndroidQt_Window)
+ DEFINE_STANDARD_RTTIEXT(AndroidQt_Window,Aspect_Window)
};
diff --git a/samples/qt/Common/src/DocumentCommon.cxx b/samples/qt/Common/src/DocumentCommon.cxx
index 1c567615df..bccf024ec4 100755
--- a/samples/qt/Common/src/DocumentCommon.cxx
+++ b/samples/qt/Common/src/DocumentCommon.cxx
@@ -187,7 +187,7 @@ void DocumentCommon::onColor()
QColor aColor ;
Quantity_Color aShapeColor;
myContext->InitCurrent();
- Handle_AIS_InteractiveObject Current = myContext->Current() ;
+ Handle(AIS_InteractiveObject) Current = myContext->Current() ;
if ( Current->HasColor () )
{
aShapeColor = myContext->Color( Current );
diff --git a/samples/qt/Common/src/OcctWindow.cxx b/samples/qt/Common/src/OcctWindow.cxx
index c9bc3cad44..d0af32dbf5 100644
--- a/samples/qt/Common/src/OcctWindow.cxx
+++ b/samples/qt/Common/src/OcctWindow.cxx
@@ -1,5 +1,7 @@
#include
+IMPLEMENT_STANDARD_RTTIEXT(OcctWindow,Aspect_Window)
+
// =======================================================================
// function : OcctWindow
// purpose :
diff --git a/samples/qt/Common/src/OcctWindow.h b/samples/qt/Common/src/OcctWindow.h
index 80c9668ee8..5d82e41be4 100644
--- a/samples/qt/Common/src/OcctWindow.h
+++ b/samples/qt/Common/src/OcctWindow.h
@@ -75,7 +75,7 @@ public:
virtual Aspect_FBConfig NativeFBConfig() const Standard_OVERRIDE { return NULL; }
- DEFINE_STANDARD_RTTI( OcctWindow, Aspect_Window )
+ DEFINE_STANDARD_RTTIEXT(OcctWindow,Aspect_Window)
protected:
Standard_Integer myXLeft;
diff --git a/src/AIS/AIS_AngleDimension.cxx b/src/AIS/AIS_AngleDimension.cxx
index 216c932f5d..a5be546ae8 100644
--- a/src/AIS/AIS_AngleDimension.cxx
+++ b/src/AIS/AIS_AngleDimension.cxx
@@ -53,6 +53,8 @@
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_AngleDimension,AIS_Dimension)
+
namespace
{
static const TCollection_ExtendedString THE_EMPTY_LABEL_STRING;
diff --git a/src/AIS/AIS_AngleDimension.hxx b/src/AIS/AIS_AngleDimension.hxx
index 071a485dc7..3e2278c27e 100755
--- a/src/AIS/AIS_AngleDimension.hxx
+++ b/src/AIS/AIS_AngleDimension.hxx
@@ -210,7 +210,7 @@ public:
public:
- DEFINE_STANDARD_RTTI (AIS_AngleDimension, AIS_Dimension)
+ DEFINE_STANDARD_RTTIEXT(AIS_AngleDimension,AIS_Dimension)
protected:
diff --git a/src/AIS/AIS_AttributeFilter.cxx b/src/AIS/AIS_AttributeFilter.cxx
index f889abbc46..e19e8a7c51 100644
--- a/src/AIS/AIS_AttributeFilter.cxx
+++ b/src/AIS/AIS_AttributeFilter.cxx
@@ -20,6 +20,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_AttributeFilter,SelectMgr_Filter)
+
AIS_AttributeFilter::AIS_AttributeFilter():
hasC(Standard_False),
hasW(Standard_False){}
diff --git a/src/AIS/AIS_AttributeFilter.hxx b/src/AIS/AIS_AttributeFilter.hxx
index 1709bf716e..54a38090b2 100644
--- a/src/AIS/AIS_AttributeFilter.hxx
+++ b/src/AIS/AIS_AttributeFilter.hxx
@@ -101,7 +101,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_AttributeFilter,SelectMgr_Filter)
+ DEFINE_STANDARD_RTTIEXT(AIS_AttributeFilter,SelectMgr_Filter)
protected:
diff --git a/src/AIS/AIS_Axis.cxx b/src/AIS/AIS_Axis.cxx
index a1300ba373..ee9601d29f 100644
--- a/src/AIS/AIS_Axis.cxx
+++ b/src/AIS/AIS_Axis.cxx
@@ -43,6 +43,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_Axis,AIS_InteractiveObject)
+
//=======================================================================
//function : AIS_Axis
//purpose :
diff --git a/src/AIS/AIS_Axis.hxx b/src/AIS/AIS_Axis.hxx
index e4efb06eaf..11db6d5cae 100644
--- a/src/AIS/AIS_Axis.hxx
+++ b/src/AIS/AIS_Axis.hxx
@@ -133,7 +133,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_Axis,AIS_InteractiveObject)
+ DEFINE_STANDARD_RTTIEXT(AIS_Axis,AIS_InteractiveObject)
protected:
diff --git a/src/AIS/AIS_BadEdgeFilter.cxx b/src/AIS/AIS_BadEdgeFilter.cxx
index a13b4301b7..f8ca6055a2 100644
--- a/src/AIS/AIS_BadEdgeFilter.cxx
+++ b/src/AIS/AIS_BadEdgeFilter.cxx
@@ -25,6 +25,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_BadEdgeFilter,SelectMgr_Filter)
+
//=======================================================================
//function : AIS_BadEdgeFilter
//purpose :
diff --git a/src/AIS/AIS_BadEdgeFilter.hxx b/src/AIS/AIS_BadEdgeFilter.hxx
index e83f8d4e6b..89a7e937c1 100644
--- a/src/AIS/AIS_BadEdgeFilter.hxx
+++ b/src/AIS/AIS_BadEdgeFilter.hxx
@@ -61,7 +61,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_BadEdgeFilter,SelectMgr_Filter)
+ DEFINE_STANDARD_RTTIEXT(AIS_BadEdgeFilter,SelectMgr_Filter)
protected:
diff --git a/src/AIS/AIS_C0RegularityFilter.cxx b/src/AIS/AIS_C0RegularityFilter.cxx
index e0a85e0bb5..7d4c9da7a4 100644
--- a/src/AIS/AIS_C0RegularityFilter.cxx
+++ b/src/AIS/AIS_C0RegularityFilter.cxx
@@ -28,6 +28,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_C0RegularityFilter,SelectMgr_Filter)
+
//=======================================================================
//function : AIS_C0RegularityFilter
//purpose :
diff --git a/src/AIS/AIS_C0RegularityFilter.hxx b/src/AIS/AIS_C0RegularityFilter.hxx
index a43e53e50f..9b5e2c3a2d 100644
--- a/src/AIS/AIS_C0RegularityFilter.hxx
+++ b/src/AIS/AIS_C0RegularityFilter.hxx
@@ -47,7 +47,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_C0RegularityFilter,SelectMgr_Filter)
+ DEFINE_STANDARD_RTTIEXT(AIS_C0RegularityFilter,SelectMgr_Filter)
protected:
diff --git a/src/AIS/AIS_Chamf2dDimension.cxx b/src/AIS/AIS_Chamf2dDimension.cxx
index f6d79207cd..3b87603070 100644
--- a/src/AIS/AIS_Chamf2dDimension.cxx
+++ b/src/AIS/AIS_Chamf2dDimension.cxx
@@ -50,6 +50,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_Chamf2dDimension,AIS_Relation)
+
//=======================================================================
//function : Constructor
//purpose :
diff --git a/src/AIS/AIS_Chamf2dDimension.hxx b/src/AIS/AIS_Chamf2dDimension.hxx
index bc184d40e7..d7adc215db 100644
--- a/src/AIS/AIS_Chamf2dDimension.hxx
+++ b/src/AIS/AIS_Chamf2dDimension.hxx
@@ -82,7 +82,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_Chamf2dDimension,AIS_Relation)
+ DEFINE_STANDARD_RTTIEXT(AIS_Chamf2dDimension,AIS_Relation)
protected:
diff --git a/src/AIS/AIS_Chamf3dDimension.cxx b/src/AIS/AIS_Chamf3dDimension.cxx
index 58adb7ad9d..50d3a615f8 100644
--- a/src/AIS/AIS_Chamf3dDimension.cxx
+++ b/src/AIS/AIS_Chamf3dDimension.cxx
@@ -49,6 +49,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_Chamf3dDimension,AIS_Relation)
+
//=======================================================================
//function : Constructor
//purpose :
diff --git a/src/AIS/AIS_Chamf3dDimension.hxx b/src/AIS/AIS_Chamf3dDimension.hxx
index 876a87e615..50d4ebf70e 100644
--- a/src/AIS/AIS_Chamf3dDimension.hxx
+++ b/src/AIS/AIS_Chamf3dDimension.hxx
@@ -81,7 +81,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_Chamf3dDimension,AIS_Relation)
+ DEFINE_STANDARD_RTTIEXT(AIS_Chamf3dDimension,AIS_Relation)
protected:
diff --git a/src/AIS/AIS_Circle.cxx b/src/AIS/AIS_Circle.cxx
index b24feb215a..b33789431b 100644
--- a/src/AIS/AIS_Circle.cxx
+++ b/src/AIS/AIS_Circle.cxx
@@ -37,6 +37,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_Circle,AIS_InteractiveObject)
+
//=======================================================================
//function : AIS_Circle
//purpose :
diff --git a/src/AIS/AIS_Circle.hxx b/src/AIS/AIS_Circle.hxx
index 57a5a4e3c3..327bf01f4c 100644
--- a/src/AIS/AIS_Circle.hxx
+++ b/src/AIS/AIS_Circle.hxx
@@ -112,7 +112,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_Circle,AIS_InteractiveObject)
+ DEFINE_STANDARD_RTTIEXT(AIS_Circle,AIS_InteractiveObject)
protected:
diff --git a/src/AIS/AIS_ColorScale.cxx b/src/AIS/AIS_ColorScale.cxx
index e0edfa6ddb..d773051874 100644
--- a/src/AIS/AIS_ColorScale.cxx
+++ b/src/AIS/AIS_ColorScale.cxx
@@ -39,6 +39,8 @@
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_ColorScale,AIS_InteractiveObject)
+
//=======================================================================
//function : AIS_ColorScale
//purpose :
diff --git a/src/AIS/AIS_ColorScale.hxx b/src/AIS/AIS_ColorScale.hxx
index acb6022da9..2cd703dfeb 100644
--- a/src/AIS/AIS_ColorScale.hxx
+++ b/src/AIS/AIS_ColorScale.hxx
@@ -211,7 +211,7 @@ public:
Standard_EXPORT void TextSize (const TCollection_ExtendedString& theText, const Standard_Integer theHeight, Standard_Integer& theWidth, Standard_Integer& theAscent, Standard_Integer& theDescent) const;
- DEFINE_STANDARD_RTTI(AIS_ColorScale,AIS_InteractiveObject)
+ DEFINE_STANDARD_RTTIEXT(AIS_ColorScale,AIS_InteractiveObject)
protected:
diff --git a/src/AIS/AIS_ColoredShape.cxx b/src/AIS/AIS_ColoredShape.cxx
index 19af280b99..4d312437fc 100644
--- a/src/AIS/AIS_ColoredShape.cxx
+++ b/src/AIS/AIS_ColoredShape.cxx
@@ -44,6 +44,9 @@
+IMPLEMENT_STANDARD_RTTIEXT(AIS_ColoredShape,AIS_Shape)
+IMPLEMENT_STANDARD_RTTIEXT(AIS_ColoredDrawer,Prs3d_Drawer)
+
//=======================================================================
//function : AIS_ColoredShape
//purpose :
diff --git a/src/AIS/AIS_ColoredShape.hxx b/src/AIS/AIS_ColoredShape.hxx
index bd10c3ab32..1c74296eec 100644
--- a/src/AIS/AIS_ColoredShape.hxx
+++ b/src/AIS/AIS_ColoredShape.hxx
@@ -54,7 +54,7 @@ public: //! @name list of overridden properties
Standard_Boolean myHasOwnWidth;
public:
- DEFINE_STANDARD_RTTI(AIS_ColoredDrawer, Prs3d_Drawer);
+ DEFINE_STANDARD_RTTIEXT(AIS_ColoredDrawer,Prs3d_Drawer);
};
@@ -175,7 +175,7 @@ protected:
public:
- DEFINE_STANDARD_RTTI(AIS_ColoredShape, AIS_Shape);
+ DEFINE_STANDARD_RTTIEXT(AIS_ColoredShape,AIS_Shape);
};
diff --git a/src/AIS/AIS_ConcentricRelation.cxx b/src/AIS/AIS_ConcentricRelation.cxx
index b1e5c6fc09..aa11bcebbd 100644
--- a/src/AIS/AIS_ConcentricRelation.cxx
+++ b/src/AIS/AIS_ConcentricRelation.cxx
@@ -41,6 +41,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_ConcentricRelation,AIS_Relation)
+
//=======================================================================
//function : Constructor
//purpose :
diff --git a/src/AIS/AIS_ConcentricRelation.hxx b/src/AIS/AIS_ConcentricRelation.hxx
index 086a18b13d..620381a40f 100644
--- a/src/AIS/AIS_ConcentricRelation.hxx
+++ b/src/AIS/AIS_ConcentricRelation.hxx
@@ -68,7 +68,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_ConcentricRelation,AIS_Relation)
+ DEFINE_STANDARD_RTTIEXT(AIS_ConcentricRelation,AIS_Relation)
protected:
diff --git a/src/AIS/AIS_ConnectedInteractive.cxx b/src/AIS/AIS_ConnectedInteractive.cxx
index 6a3cbb2dd3..4f74b25e80 100644
--- a/src/AIS/AIS_ConnectedInteractive.cxx
+++ b/src/AIS/AIS_ConnectedInteractive.cxx
@@ -44,6 +44,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_ConnectedInteractive,AIS_InteractiveObject)
+
//=======================================================================
//function : AIS_ConnectedInteractive
//purpose :
diff --git a/src/AIS/AIS_ConnectedInteractive.hxx b/src/AIS/AIS_ConnectedInteractive.hxx
index fa1c99f42f..f7ac4c39ea 100644
--- a/src/AIS/AIS_ConnectedInteractive.hxx
+++ b/src/AIS/AIS_ConnectedInteractive.hxx
@@ -101,7 +101,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_ConnectedInteractive,AIS_InteractiveObject)
+ DEFINE_STANDARD_RTTIEXT(AIS_ConnectedInteractive,AIS_InteractiveObject)
protected:
diff --git a/src/AIS/AIS_DiameterDimension.cxx b/src/AIS/AIS_DiameterDimension.cxx
index 69f2d13b59..495a82c733 100644
--- a/src/AIS/AIS_DiameterDimension.cxx
+++ b/src/AIS/AIS_DiameterDimension.cxx
@@ -26,6 +26,8 @@
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_DiameterDimension,AIS_Dimension)
+
namespace
{
static const Standard_ExtCharacter THE_DIAMETER_SYMBOL (0x00D8);
diff --git a/src/AIS/AIS_DiameterDimension.hxx b/src/AIS/AIS_DiameterDimension.hxx
index b76e1db042..6c8dcac050 100644
--- a/src/AIS/AIS_DiameterDimension.hxx
+++ b/src/AIS/AIS_DiameterDimension.hxx
@@ -130,7 +130,7 @@ public:
public:
- DEFINE_STANDARD_RTTI(AIS_DiameterDimension, AIS_Dimension)
+ DEFINE_STANDARD_RTTIEXT(AIS_DiameterDimension,AIS_Dimension)
protected:
diff --git a/src/AIS/AIS_Dimension.cxx b/src/AIS/AIS_Dimension.cxx
index 6dff6bab65..6c808dcb8a 100755
--- a/src/AIS/AIS_Dimension.cxx
+++ b/src/AIS/AIS_Dimension.cxx
@@ -75,6 +75,8 @@
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_Dimension,AIS_InteractiveObject)
+
namespace
{
// default text strings
diff --git a/src/AIS/AIS_Dimension.hxx b/src/AIS/AIS_Dimension.hxx
index bdc7a12355..15c6f00c6c 100755
--- a/src/AIS/AIS_Dimension.hxx
+++ b/src/AIS/AIS_Dimension.hxx
@@ -378,7 +378,7 @@ public:
public:
- DEFINE_STANDARD_RTTI(AIS_Dimension, AIS_InteractiveObject)
+ DEFINE_STANDARD_RTTIEXT(AIS_Dimension,AIS_InteractiveObject)
protected:
diff --git a/src/AIS/AIS_DimensionOwner.cxx b/src/AIS/AIS_DimensionOwner.cxx
index 849ad18674..81094b684a 100755
--- a/src/AIS/AIS_DimensionOwner.cxx
+++ b/src/AIS/AIS_DimensionOwner.cxx
@@ -24,6 +24,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_DimensionOwner,SelectMgr_EntityOwner)
+
namespace
{
//=======================================================================
diff --git a/src/AIS/AIS_DimensionOwner.hxx b/src/AIS/AIS_DimensionOwner.hxx
index b3b45d1d7a..c32b4edfa8 100644
--- a/src/AIS/AIS_DimensionOwner.hxx
+++ b/src/AIS/AIS_DimensionOwner.hxx
@@ -71,7 +71,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_DimensionOwner,SelectMgr_EntityOwner)
+ DEFINE_STANDARD_RTTIEXT(AIS_DimensionOwner,SelectMgr_EntityOwner)
protected:
diff --git a/src/AIS/AIS_EllipseRadiusDimension.cxx b/src/AIS/AIS_EllipseRadiusDimension.cxx
index 7f88c818c2..9bc9b0d94c 100644
--- a/src/AIS/AIS_EllipseRadiusDimension.cxx
+++ b/src/AIS/AIS_EllipseRadiusDimension.cxx
@@ -46,6 +46,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_EllipseRadiusDimension,AIS_Relation)
+
//=======================================================================
//function : AIS_EllipseRadiusDimension
//purpose :
diff --git a/src/AIS/AIS_EllipseRadiusDimension.hxx b/src/AIS/AIS_EllipseRadiusDimension.hxx
index ff522087b6..cb04856c3b 100644
--- a/src/AIS/AIS_EllipseRadiusDimension.hxx
+++ b/src/AIS/AIS_EllipseRadiusDimension.hxx
@@ -54,7 +54,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_EllipseRadiusDimension,AIS_Relation)
+ DEFINE_STANDARD_RTTIEXT(AIS_EllipseRadiusDimension,AIS_Relation)
protected:
diff --git a/src/AIS/AIS_EqualDistanceRelation.cxx b/src/AIS/AIS_EqualDistanceRelation.cxx
index a66c0a507a..f999dc37b2 100644
--- a/src/AIS/AIS_EqualDistanceRelation.cxx
+++ b/src/AIS/AIS_EqualDistanceRelation.cxx
@@ -48,6 +48,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_EqualDistanceRelation,AIS_Relation)
+
//=======================================================================
//function : AIS_EqualDistanceRelation
//purpose :
diff --git a/src/AIS/AIS_EqualDistanceRelation.hxx b/src/AIS/AIS_EqualDistanceRelation.hxx
index 7ab7e0b7c2..ab21457501 100644
--- a/src/AIS/AIS_EqualDistanceRelation.hxx
+++ b/src/AIS/AIS_EqualDistanceRelation.hxx
@@ -108,7 +108,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_EqualDistanceRelation,AIS_Relation)
+ DEFINE_STANDARD_RTTIEXT(AIS_EqualDistanceRelation,AIS_Relation)
protected:
diff --git a/src/AIS/AIS_EqualRadiusRelation.cxx b/src/AIS/AIS_EqualRadiusRelation.cxx
index 08921b1f4a..e055dad667 100644
--- a/src/AIS/AIS_EqualRadiusRelation.cxx
+++ b/src/AIS/AIS_EqualRadiusRelation.cxx
@@ -40,6 +40,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_EqualRadiusRelation,AIS_Relation)
+
//=======================================================================
//function : AIS_EqualRadiusRelation
//purpose :
diff --git a/src/AIS/AIS_EqualRadiusRelation.hxx b/src/AIS/AIS_EqualRadiusRelation.hxx
index fd9b7f6f04..ae22ff8482 100644
--- a/src/AIS/AIS_EqualRadiusRelation.hxx
+++ b/src/AIS/AIS_EqualRadiusRelation.hxx
@@ -59,7 +59,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_EqualRadiusRelation,AIS_Relation)
+ DEFINE_STANDARD_RTTIEXT(AIS_EqualRadiusRelation,AIS_Relation)
protected:
diff --git a/src/AIS/AIS_ExclusionFilter.cxx b/src/AIS/AIS_ExclusionFilter.cxx
index 00b65f5304..46e9878d53 100644
--- a/src/AIS/AIS_ExclusionFilter.cxx
+++ b/src/AIS/AIS_ExclusionFilter.cxx
@@ -23,6 +23,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_ExclusionFilter,SelectMgr_Filter)
+
//=======================================================================
//function : AIS_ExclusionFilter
//purpose : Constructors
diff --git a/src/AIS/AIS_ExclusionFilter.hxx b/src/AIS/AIS_ExclusionFilter.hxx
index 7aeef5a939..163865bc2e 100644
--- a/src/AIS/AIS_ExclusionFilter.hxx
+++ b/src/AIS/AIS_ExclusionFilter.hxx
@@ -93,7 +93,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_ExclusionFilter,SelectMgr_Filter)
+ DEFINE_STANDARD_RTTIEXT(AIS_ExclusionFilter,SelectMgr_Filter)
protected:
diff --git a/src/AIS/AIS_FixRelation.cxx b/src/AIS/AIS_FixRelation.cxx
index f6583f140c..4497926a63 100644
--- a/src/AIS/AIS_FixRelation.cxx
+++ b/src/AIS/AIS_FixRelation.cxx
@@ -57,6 +57,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_FixRelation,AIS_Relation)
+
static Standard_Boolean InDomain(const Standard_Real fpar,
const Standard_Real lpar,
const Standard_Real para)
diff --git a/src/AIS/AIS_FixRelation.hxx b/src/AIS/AIS_FixRelation.hxx
index 5d1a6d495e..39e118381e 100644
--- a/src/AIS/AIS_FixRelation.hxx
+++ b/src/AIS/AIS_FixRelation.hxx
@@ -101,7 +101,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_FixRelation,AIS_Relation)
+ DEFINE_STANDARD_RTTIEXT(AIS_FixRelation,AIS_Relation)
protected:
diff --git a/src/AIS/AIS_GlobalStatus.cxx b/src/AIS/AIS_GlobalStatus.cxx
index 36481e1c58..ee999f73f0 100644
--- a/src/AIS/AIS_GlobalStatus.cxx
+++ b/src/AIS/AIS_GlobalStatus.cxx
@@ -19,6 +19,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_GlobalStatus,MMgt_TShared)
+
AIS_GlobalStatus::AIS_GlobalStatus():
myStatus(AIS_DS_None),
myLayerIndex(0),
diff --git a/src/AIS/AIS_GlobalStatus.hxx b/src/AIS/AIS_GlobalStatus.hxx
index a91abab14c..faec81e7a4 100644
--- a/src/AIS/AIS_GlobalStatus.hxx
+++ b/src/AIS/AIS_GlobalStatus.hxx
@@ -93,7 +93,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_GlobalStatus,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(AIS_GlobalStatus,MMgt_TShared)
protected:
diff --git a/src/AIS/AIS_IdenticRelation.cxx b/src/AIS/AIS_IdenticRelation.cxx
index 1fabed9483..ad243462a4 100644
--- a/src/AIS/AIS_IdenticRelation.cxx
+++ b/src/AIS/AIS_IdenticRelation.cxx
@@ -55,6 +55,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_IdenticRelation,AIS_Relation)
+
// jfa 15/10/2000
static Standard_Real Modulo2PI(const Standard_Real ANGLE)
{
diff --git a/src/AIS/AIS_IdenticRelation.hxx b/src/AIS/AIS_IdenticRelation.hxx
index a010ecc13f..8d06e37bf2 100644
--- a/src/AIS/AIS_IdenticRelation.hxx
+++ b/src/AIS/AIS_IdenticRelation.hxx
@@ -76,7 +76,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_IdenticRelation,AIS_Relation)
+ DEFINE_STANDARD_RTTIEXT(AIS_IdenticRelation,AIS_Relation)
protected:
diff --git a/src/AIS/AIS_InteractiveContext.cxx b/src/AIS/AIS_InteractiveContext.cxx
index 85b873fe52..a8c9cd4160 100644
--- a/src/AIS/AIS_InteractiveContext.cxx
+++ b/src/AIS/AIS_InteractiveContext.cxx
@@ -62,6 +62,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_InteractiveContext,MMgt_TShared)
+
//#include
namespace
{
diff --git a/src/AIS/AIS_InteractiveContext.hxx b/src/AIS/AIS_InteractiveContext.hxx
index 27b8311154..e407076461 100644
--- a/src/AIS/AIS_InteractiveContext.hxx
+++ b/src/AIS/AIS_InteractiveContext.hxx
@@ -1566,7 +1566,7 @@ public:
friend class AIS_LocalContext;
- DEFINE_STANDARD_RTTI(AIS_InteractiveContext,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(AIS_InteractiveContext,MMgt_TShared)
protected:
diff --git a/src/AIS/AIS_InteractiveObject.cxx b/src/AIS/AIS_InteractiveObject.cxx
index 696b06ac25..80a9e793bc 100644
--- a/src/AIS/AIS_InteractiveObject.cxx
+++ b/src/AIS/AIS_InteractiveObject.cxx
@@ -44,6 +44,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_InteractiveObject,SelectMgr_SelectableObject)
+
//=======================================================================
//function : AIS_InteractiveObject
//purpose :
diff --git a/src/AIS/AIS_InteractiveObject.hxx b/src/AIS/AIS_InteractiveObject.hxx
index bd6551faf5..b21994bf0b 100644
--- a/src/AIS/AIS_InteractiveObject.hxx
+++ b/src/AIS/AIS_InteractiveObject.hxx
@@ -460,7 +460,7 @@ public:
friend class AIS_InteractiveContext;
- DEFINE_STANDARD_RTTI(AIS_InteractiveObject,SelectMgr_SelectableObject)
+ DEFINE_STANDARD_RTTIEXT(AIS_InteractiveObject,SelectMgr_SelectableObject)
protected:
diff --git a/src/AIS/AIS_LengthDimension.cxx b/src/AIS/AIS_LengthDimension.cxx
index f941818883..ad63207696 100755
--- a/src/AIS/AIS_LengthDimension.cxx
+++ b/src/AIS/AIS_LengthDimension.cxx
@@ -36,6 +36,8 @@
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_LengthDimension,AIS_Dimension)
+
//=======================================================================
//function : Constructor
//purpose : Dimension between two faces
diff --git a/src/AIS/AIS_LengthDimension.hxx b/src/AIS/AIS_LengthDimension.hxx
index 3416df3e69..c5cbfce2ae 100755
--- a/src/AIS/AIS_LengthDimension.hxx
+++ b/src/AIS/AIS_LengthDimension.hxx
@@ -196,7 +196,7 @@ public:
public:
- DEFINE_STANDARD_RTTI(AIS_LengthDimension, AIS_Dimension)
+ DEFINE_STANDARD_RTTIEXT(AIS_LengthDimension,AIS_Dimension)
protected:
diff --git a/src/AIS/AIS_Line.cxx b/src/AIS/AIS_Line.cxx
index cf10bd6c00..93422d02db 100644
--- a/src/AIS/AIS_Line.cxx
+++ b/src/AIS/AIS_Line.cxx
@@ -39,6 +39,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_Line,AIS_InteractiveObject)
+
//==================================================================
// function: FindLimits
// purpose:
diff --git a/src/AIS/AIS_Line.hxx b/src/AIS/AIS_Line.hxx
index 6f09b8520e..b0afd0a25c 100644
--- a/src/AIS/AIS_Line.hxx
+++ b/src/AIS/AIS_Line.hxx
@@ -103,7 +103,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_Line,AIS_InteractiveObject)
+ DEFINE_STANDARD_RTTIEXT(AIS_Line,AIS_InteractiveObject)
protected:
diff --git a/src/AIS/AIS_LocalContext.cxx b/src/AIS/AIS_LocalContext.cxx
index 1d992a8a3e..6e64c8bdac 100644
--- a/src/AIS/AIS_LocalContext.cxx
+++ b/src/AIS/AIS_LocalContext.cxx
@@ -49,6 +49,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_LocalContext,MMgt_TShared)
+
static TCollection_AsciiString AIS_Local_SelName(const Standard_Address address,
const Standard_Integer anIndex)
{
diff --git a/src/AIS/AIS_LocalContext.hxx b/src/AIS/AIS_LocalContext.hxx
index 02972a28e6..bf5eeeb549 100644
--- a/src/AIS/AIS_LocalContext.hxx
+++ b/src/AIS/AIS_LocalContext.hxx
@@ -359,7 +359,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_LocalContext,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(AIS_LocalContext,MMgt_TShared)
protected:
diff --git a/src/AIS/AIS_LocalStatus.cxx b/src/AIS/AIS_LocalStatus.cxx
index aa4389280f..9423020f60 100644
--- a/src/AIS/AIS_LocalStatus.cxx
+++ b/src/AIS/AIS_LocalStatus.cxx
@@ -18,6 +18,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_LocalStatus,MMgt_TShared)
+
AIS_LocalStatus::AIS_LocalStatus(const Standard_Boolean IsTemp,
const Standard_Boolean Decomp,
const Standard_Integer DMode,
diff --git a/src/AIS/AIS_LocalStatus.hxx b/src/AIS/AIS_LocalStatus.hxx
index 255db73e10..8586690c8a 100644
--- a/src/AIS/AIS_LocalStatus.hxx
+++ b/src/AIS/AIS_LocalStatus.hxx
@@ -89,7 +89,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_LocalStatus,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(AIS_LocalStatus,MMgt_TShared)
protected:
diff --git a/src/AIS/AIS_MaxRadiusDimension.cxx b/src/AIS/AIS_MaxRadiusDimension.cxx
index 00f3110fcf..44eeb6d532 100644
--- a/src/AIS/AIS_MaxRadiusDimension.cxx
+++ b/src/AIS/AIS_MaxRadiusDimension.cxx
@@ -58,6 +58,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_MaxRadiusDimension,AIS_EllipseRadiusDimension)
+
//=======================================================================
//function : AIS_MaxRadiusDimension
//purpose :
diff --git a/src/AIS/AIS_MaxRadiusDimension.hxx b/src/AIS/AIS_MaxRadiusDimension.hxx
index 42b8e7f66b..435e58b424 100644
--- a/src/AIS/AIS_MaxRadiusDimension.hxx
+++ b/src/AIS/AIS_MaxRadiusDimension.hxx
@@ -69,7 +69,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_MaxRadiusDimension,AIS_EllipseRadiusDimension)
+ DEFINE_STANDARD_RTTIEXT(AIS_MaxRadiusDimension,AIS_EllipseRadiusDimension)
protected:
diff --git a/src/AIS/AIS_MidPointRelation.cxx b/src/AIS/AIS_MidPointRelation.cxx
index 6145474ec3..c64c5ad68c 100644
--- a/src/AIS/AIS_MidPointRelation.cxx
+++ b/src/AIS/AIS_MidPointRelation.cxx
@@ -53,6 +53,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_MidPointRelation,AIS_Relation)
+
//=======================================================================
//function : AIS_MidPointRelation
//purpose :
diff --git a/src/AIS/AIS_MidPointRelation.hxx b/src/AIS/AIS_MidPointRelation.hxx
index 545f15f500..e2f814f287 100644
--- a/src/AIS/AIS_MidPointRelation.hxx
+++ b/src/AIS/AIS_MidPointRelation.hxx
@@ -67,7 +67,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_MidPointRelation,AIS_Relation)
+ DEFINE_STANDARD_RTTIEXT(AIS_MidPointRelation,AIS_Relation)
protected:
diff --git a/src/AIS/AIS_MinRadiusDimension.cxx b/src/AIS/AIS_MinRadiusDimension.cxx
index 5ee9dfd646..3263f01da0 100644
--- a/src/AIS/AIS_MinRadiusDimension.cxx
+++ b/src/AIS/AIS_MinRadiusDimension.cxx
@@ -58,6 +58,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_MinRadiusDimension,AIS_EllipseRadiusDimension)
+
//=======================================================================
//function : AIS_MinRadiusDimension
//purpose :
diff --git a/src/AIS/AIS_MinRadiusDimension.hxx b/src/AIS/AIS_MinRadiusDimension.hxx
index 09aaf80188..dafc902942 100644
--- a/src/AIS/AIS_MinRadiusDimension.hxx
+++ b/src/AIS/AIS_MinRadiusDimension.hxx
@@ -68,7 +68,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_MinRadiusDimension,AIS_EllipseRadiusDimension)
+ DEFINE_STANDARD_RTTIEXT(AIS_MinRadiusDimension,AIS_EllipseRadiusDimension)
protected:
diff --git a/src/AIS/AIS_MultipleConnectedInteractive.cxx b/src/AIS/AIS_MultipleConnectedInteractive.cxx
index 07cacceaaa..64da42d126 100644
--- a/src/AIS/AIS_MultipleConnectedInteractive.cxx
+++ b/src/AIS/AIS_MultipleConnectedInteractive.cxx
@@ -33,6 +33,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_MultipleConnectedInteractive,AIS_InteractiveObject)
+
namespace
{
//! SelectMgr_AssemblyEntityOwner replaces original owners in sensitive entities
diff --git a/src/AIS/AIS_MultipleConnectedInteractive.hxx b/src/AIS/AIS_MultipleConnectedInteractive.hxx
index da91330ecb..137010c8f2 100644
--- a/src/AIS/AIS_MultipleConnectedInteractive.hxx
+++ b/src/AIS/AIS_MultipleConnectedInteractive.hxx
@@ -100,7 +100,7 @@ public:
Standard_EXPORT virtual Handle(SelectMgr_EntityOwner) GlobalSelOwner() const Standard_OVERRIDE;
- DEFINE_STANDARD_RTTI(AIS_MultipleConnectedInteractive,AIS_InteractiveObject)
+ DEFINE_STANDARD_RTTIEXT(AIS_MultipleConnectedInteractive,AIS_InteractiveObject)
protected:
diff --git a/src/AIS/AIS_OffsetDimension.cxx b/src/AIS/AIS_OffsetDimension.cxx
index bd8d8fa4e4..f41cbaa86b 100644
--- a/src/AIS/AIS_OffsetDimension.cxx
+++ b/src/AIS/AIS_OffsetDimension.cxx
@@ -56,6 +56,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_OffsetDimension,AIS_Relation)
+
//=======================================================================
//function : AIS_OffsetDimension
//purpose :
diff --git a/src/AIS/AIS_OffsetDimension.hxx b/src/AIS/AIS_OffsetDimension.hxx
index 23e2690051..5230255a2f 100644
--- a/src/AIS/AIS_OffsetDimension.hxx
+++ b/src/AIS/AIS_OffsetDimension.hxx
@@ -80,7 +80,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_OffsetDimension,AIS_Relation)
+ DEFINE_STANDARD_RTTIEXT(AIS_OffsetDimension,AIS_Relation)
protected:
diff --git a/src/AIS/AIS_ParallelRelation.cxx b/src/AIS/AIS_ParallelRelation.cxx
index d3a594c8d4..7ad88331f4 100644
--- a/src/AIS/AIS_ParallelRelation.cxx
+++ b/src/AIS/AIS_ParallelRelation.cxx
@@ -52,6 +52,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_ParallelRelation,AIS_Relation)
+
//=======================================================================
//function : Constructor
//purpose :
diff --git a/src/AIS/AIS_ParallelRelation.hxx b/src/AIS/AIS_ParallelRelation.hxx
index f1a65f58cc..0f821bbf7d 100644
--- a/src/AIS/AIS_ParallelRelation.hxx
+++ b/src/AIS/AIS_ParallelRelation.hxx
@@ -76,7 +76,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_ParallelRelation,AIS_Relation)
+ DEFINE_STANDARD_RTTIEXT(AIS_ParallelRelation,AIS_Relation)
protected:
diff --git a/src/AIS/AIS_PerpendicularRelation.cxx b/src/AIS/AIS_PerpendicularRelation.cxx
index 26610923f0..8d9f90e48c 100644
--- a/src/AIS/AIS_PerpendicularRelation.cxx
+++ b/src/AIS/AIS_PerpendicularRelation.cxx
@@ -50,6 +50,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_PerpendicularRelation,AIS_Relation)
+
//=======================================================================
//function : Constructor
//purpose : TwoEdgesPerpendicular
diff --git a/src/AIS/AIS_PerpendicularRelation.hxx b/src/AIS/AIS_PerpendicularRelation.hxx
index e1b0b1f81d..83de38c925 100644
--- a/src/AIS/AIS_PerpendicularRelation.hxx
+++ b/src/AIS/AIS_PerpendicularRelation.hxx
@@ -71,7 +71,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_PerpendicularRelation,AIS_Relation)
+ DEFINE_STANDARD_RTTIEXT(AIS_PerpendicularRelation,AIS_Relation)
protected:
diff --git a/src/AIS/AIS_Plane.cxx b/src/AIS/AIS_Plane.cxx
index 64fd3e1f69..9566f5f735 100644
--- a/src/AIS/AIS_Plane.cxx
+++ b/src/AIS/AIS_Plane.cxx
@@ -54,6 +54,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_Plane,AIS_InteractiveObject)
+
//=======================================================================
//function : AIS_Plane
//purpose :
diff --git a/src/AIS/AIS_Plane.hxx b/src/AIS/AIS_Plane.hxx
index f1eef41cf6..b5419082de 100644
--- a/src/AIS/AIS_Plane.hxx
+++ b/src/AIS/AIS_Plane.hxx
@@ -173,7 +173,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_Plane,AIS_InteractiveObject)
+ DEFINE_STANDARD_RTTIEXT(AIS_Plane,AIS_InteractiveObject)
protected:
diff --git a/src/AIS/AIS_PlaneTrihedron.cxx b/src/AIS/AIS_PlaneTrihedron.cxx
index 469fb70b40..9f6ae8ea2f 100644
--- a/src/AIS/AIS_PlaneTrihedron.cxx
+++ b/src/AIS/AIS_PlaneTrihedron.cxx
@@ -54,6 +54,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_PlaneTrihedron,AIS_InteractiveObject)
+
void ExtremityPoints(TColgp_Array1OfPnt& PP,const Handle(Geom_Plane)& myPlane,const Handle(Prs3d_Drawer)& myDrawer);
//=======================================================================
diff --git a/src/AIS/AIS_PlaneTrihedron.hxx b/src/AIS/AIS_PlaneTrihedron.hxx
index 8440f99be5..99277fd50f 100644
--- a/src/AIS/AIS_PlaneTrihedron.hxx
+++ b/src/AIS/AIS_PlaneTrihedron.hxx
@@ -120,7 +120,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_PlaneTrihedron,AIS_InteractiveObject)
+ DEFINE_STANDARD_RTTIEXT(AIS_PlaneTrihedron,AIS_InteractiveObject)
protected:
diff --git a/src/AIS/AIS_Point.cxx b/src/AIS/AIS_Point.cxx
index f974357849..93325280c6 100644
--- a/src/AIS/AIS_Point.cxx
+++ b/src/AIS/AIS_Point.cxx
@@ -37,6 +37,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_Point,AIS_InteractiveObject)
+
//=======================================================================
//function : AIS_Point
//purpose :
diff --git a/src/AIS/AIS_Point.hxx b/src/AIS/AIS_Point.hxx
index de86803338..db994a0742 100644
--- a/src/AIS/AIS_Point.hxx
+++ b/src/AIS/AIS_Point.hxx
@@ -102,7 +102,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_Point,AIS_InteractiveObject)
+ DEFINE_STANDARD_RTTIEXT(AIS_Point,AIS_InteractiveObject)
protected:
diff --git a/src/AIS/AIS_PointCloud.cxx b/src/AIS/AIS_PointCloud.cxx
index f055a5f143..efefed73a2 100644
--- a/src/AIS/AIS_PointCloud.cxx
+++ b/src/AIS/AIS_PointCloud.cxx
@@ -32,6 +32,8 @@
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_PointCloud,AIS_InteractiveObject)
+
//==================================================
// Function: AIS_PointCloud
// Purpose : Constructor
diff --git a/src/AIS/AIS_PointCloud.hxx b/src/AIS/AIS_PointCloud.hxx
index c762880c64..f9a31486ea 100644
--- a/src/AIS/AIS_PointCloud.hxx
+++ b/src/AIS/AIS_PointCloud.hxx
@@ -122,7 +122,7 @@ private:
public:
- DEFINE_STANDARD_RTTI(AIS_PointCloud, AIS_InteractiveObject)
+ DEFINE_STANDARD_RTTIEXT(AIS_PointCloud,AIS_InteractiveObject)
};
diff --git a/src/AIS/AIS_RadiusDimension.cxx b/src/AIS/AIS_RadiusDimension.cxx
index b51601fb07..016bee560b 100644
--- a/src/AIS/AIS_RadiusDimension.cxx
+++ b/src/AIS/AIS_RadiusDimension.cxx
@@ -22,6 +22,8 @@
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_RadiusDimension,AIS_Dimension)
+
namespace
{
static const Standard_ExtCharacter THE_RADIUS_SYMBOL ('R');
diff --git a/src/AIS/AIS_RadiusDimension.hxx b/src/AIS/AIS_RadiusDimension.hxx
index 8e97dbb8aa..913aa08ba5 100644
--- a/src/AIS/AIS_RadiusDimension.hxx
+++ b/src/AIS/AIS_RadiusDimension.hxx
@@ -118,7 +118,7 @@ public:
public:
- DEFINE_STANDARD_RTTI (AIS_RadiusDimension, AIS_Dimension)
+ DEFINE_STANDARD_RTTIEXT(AIS_RadiusDimension,AIS_Dimension)
protected:
diff --git a/src/AIS/AIS_Relation.cxx b/src/AIS/AIS_Relation.cxx
index 9498018e83..a3b64ee789 100644
--- a/src/AIS/AIS_Relation.cxx
+++ b/src/AIS/AIS_Relation.cxx
@@ -50,6 +50,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_Relation,AIS_InteractiveObject)
+
//=======================================================================
//function : AIS_Relation
//purpose :
diff --git a/src/AIS/AIS_Relation.hxx b/src/AIS/AIS_Relation.hxx
index 28e7e7e043..594f2f9ed7 100644
--- a/src/AIS/AIS_Relation.hxx
+++ b/src/AIS/AIS_Relation.hxx
@@ -193,7 +193,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_Relation,AIS_InteractiveObject)
+ DEFINE_STANDARD_RTTIEXT(AIS_Relation,AIS_InteractiveObject)
protected:
diff --git a/src/AIS/AIS_Selection.cxx b/src/AIS/AIS_Selection.cxx
index fadca41ba6..5e05506a0b 100644
--- a/src/AIS/AIS_Selection.cxx
+++ b/src/AIS/AIS_Selection.cxx
@@ -24,6 +24,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_Selection,MMgt_TShared)
+
#define MaxSizeOfResult 100000
//current selection (handle)
diff --git a/src/AIS/AIS_Selection.hxx b/src/AIS/AIS_Selection.hxx
index 61884ee66e..19c8bb96ac 100644
--- a/src/AIS/AIS_Selection.hxx
+++ b/src/AIS/AIS_Selection.hxx
@@ -120,7 +120,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_Selection,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(AIS_Selection,MMgt_TShared)
protected:
diff --git a/src/AIS/AIS_Shape.cxx b/src/AIS/AIS_Shape.cxx
index 05d4e451cc..f25df9cdc8 100644
--- a/src/AIS/AIS_Shape.cxx
+++ b/src/AIS/AIS_Shape.cxx
@@ -68,6 +68,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_Shape,AIS_InteractiveObject)
+
static Standard_Boolean myFirstCompute;
static Standard_Boolean IsInList(const TColStd_ListOfInteger& LL, const Standard_Integer aMode)
diff --git a/src/AIS/AIS_Shape.hxx b/src/AIS/AIS_Shape.hxx
index 4ba1b1d91c..9fdf9212a4 100644
--- a/src/AIS/AIS_Shape.hxx
+++ b/src/AIS/AIS_Shape.hxx
@@ -241,7 +241,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_Shape,AIS_InteractiveObject)
+ DEFINE_STANDARD_RTTIEXT(AIS_Shape,AIS_InteractiveObject)
protected:
diff --git a/src/AIS/AIS_SignatureFilter.cxx b/src/AIS/AIS_SignatureFilter.cxx
index 228b01f5df..d5d82e57ba 100644
--- a/src/AIS/AIS_SignatureFilter.cxx
+++ b/src/AIS/AIS_SignatureFilter.cxx
@@ -20,6 +20,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_SignatureFilter,AIS_TypeFilter)
+
AIS_SignatureFilter::AIS_SignatureFilter(const AIS_KindOfInteractive TheKind,
const Standard_Integer TheSignature):
AIS_TypeFilter(TheKind),
diff --git a/src/AIS/AIS_SignatureFilter.hxx b/src/AIS/AIS_SignatureFilter.hxx
index d77b1710e2..8e977b7dd2 100644
--- a/src/AIS/AIS_SignatureFilter.hxx
+++ b/src/AIS/AIS_SignatureFilter.hxx
@@ -76,7 +76,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_SignatureFilter,AIS_TypeFilter)
+ DEFINE_STANDARD_RTTIEXT(AIS_SignatureFilter,AIS_TypeFilter)
protected:
diff --git a/src/AIS/AIS_SymmetricRelation.cxx b/src/AIS/AIS_SymmetricRelation.cxx
index fc48372a28..633c9f9d64 100644
--- a/src/AIS/AIS_SymmetricRelation.cxx
+++ b/src/AIS/AIS_SymmetricRelation.cxx
@@ -50,6 +50,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_SymmetricRelation,AIS_Relation)
+
//=======================================================================
//function : AIS_SymmetricRelation
//purpose :
diff --git a/src/AIS/AIS_SymmetricRelation.hxx b/src/AIS/AIS_SymmetricRelation.hxx
index 0bac468466..e0487ba28a 100644
--- a/src/AIS/AIS_SymmetricRelation.hxx
+++ b/src/AIS/AIS_SymmetricRelation.hxx
@@ -82,7 +82,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_SymmetricRelation,AIS_Relation)
+ DEFINE_STANDARD_RTTIEXT(AIS_SymmetricRelation,AIS_Relation)
protected:
diff --git a/src/AIS/AIS_TangentRelation.cxx b/src/AIS/AIS_TangentRelation.cxx
index 31ef2882c5..9660554006 100644
--- a/src/AIS/AIS_TangentRelation.cxx
+++ b/src/AIS/AIS_TangentRelation.cxx
@@ -52,6 +52,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_TangentRelation,AIS_Relation)
+
//=======================================================================
//function : Constructor
//purpose :
diff --git a/src/AIS/AIS_TangentRelation.hxx b/src/AIS/AIS_TangentRelation.hxx
index 280c0d9dca..032d5ede81 100644
--- a/src/AIS/AIS_TangentRelation.hxx
+++ b/src/AIS/AIS_TangentRelation.hxx
@@ -82,7 +82,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_TangentRelation,AIS_Relation)
+ DEFINE_STANDARD_RTTIEXT(AIS_TangentRelation,AIS_Relation)
protected:
diff --git a/src/AIS/AIS_TextLabel.cxx b/src/AIS/AIS_TextLabel.cxx
index 3f2ae73f7e..94462acdfc 100644
--- a/src/AIS/AIS_TextLabel.cxx
+++ b/src/AIS/AIS_TextLabel.cxx
@@ -24,6 +24,8 @@
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_TextLabel,AIS_InteractiveObject)
+
//=======================================================================
//function : AIS_TextLabel
//purpose :
diff --git a/src/AIS/AIS_TextLabel.hxx b/src/AIS/AIS_TextLabel.hxx
index f4dedc9ff3..5289c6c9fa 100644
--- a/src/AIS/AIS_TextLabel.hxx
+++ b/src/AIS/AIS_TextLabel.hxx
@@ -115,7 +115,7 @@ protected:
public:
//! CASCADE RTTI
- DEFINE_STANDARD_RTTI(AIS_TextLabel, AIS_InteractiveObject);
+ DEFINE_STANDARD_RTTIEXT(AIS_TextLabel,AIS_InteractiveObject);
};
diff --git a/src/AIS/AIS_TexturedShape.cxx b/src/AIS/AIS_TexturedShape.cxx
index cb5bc279f4..b370b76ea4 100644
--- a/src/AIS/AIS_TexturedShape.cxx
+++ b/src/AIS/AIS_TexturedShape.cxx
@@ -41,6 +41,8 @@
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_TexturedShape,AIS_Shape)
+
//=======================================================================
//function : AIS_TexturedShape
//purpose :
diff --git a/src/AIS/AIS_TexturedShape.hxx b/src/AIS/AIS_TexturedShape.hxx
index 34b7d44684..5f82dfea69 100644
--- a/src/AIS/AIS_TexturedShape.hxx
+++ b/src/AIS/AIS_TexturedShape.hxx
@@ -206,7 +206,7 @@ protected: //! @name texture mapping properties
public:
- DEFINE_STANDARD_RTTI (AIS_TexturedShape, AIS_Shape)
+ DEFINE_STANDARD_RTTIEXT(AIS_TexturedShape,AIS_Shape)
};
diff --git a/src/AIS/AIS_Triangulation.cxx b/src/AIS/AIS_Triangulation.cxx
index c1dc81253d..f0656b6074 100644
--- a/src/AIS/AIS_Triangulation.cxx
+++ b/src/AIS/AIS_Triangulation.cxx
@@ -28,6 +28,8 @@
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_Triangulation,AIS_InteractiveObject)
+
AIS_Triangulation::AIS_Triangulation(const Handle(Poly_Triangulation)& Triangulation)
{
myTriangulation = Triangulation;
diff --git a/src/AIS/AIS_Triangulation.hxx b/src/AIS/AIS_Triangulation.hxx
index fe28387316..2f86b21368 100644
--- a/src/AIS/AIS_Triangulation.hxx
+++ b/src/AIS/AIS_Triangulation.hxx
@@ -64,7 +64,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_Triangulation,AIS_InteractiveObject)
+ DEFINE_STANDARD_RTTIEXT(AIS_Triangulation,AIS_InteractiveObject)
protected:
diff --git a/src/AIS/AIS_Trihedron.cxx b/src/AIS/AIS_Trihedron.cxx
index a966a4424c..62e4c4d1bb 100644
--- a/src/AIS/AIS_Trihedron.cxx
+++ b/src/AIS/AIS_Trihedron.cxx
@@ -57,6 +57,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_Trihedron,AIS_InteractiveObject)
+
//=======================================================================
//function : AIS_Trihedron
//purpose :
diff --git a/src/AIS/AIS_Trihedron.hxx b/src/AIS/AIS_Trihedron.hxx
index b89e105770..03887c81ba 100644
--- a/src/AIS/AIS_Trihedron.hxx
+++ b/src/AIS/AIS_Trihedron.hxx
@@ -168,7 +168,7 @@ public:
//! Removes the non-default settings for width set in SetWidth.
Standard_EXPORT void UnsetWidth() Standard_OVERRIDE;
- DEFINE_STANDARD_RTTI(AIS_Trihedron,AIS_InteractiveObject)
+ DEFINE_STANDARD_RTTIEXT(AIS_Trihedron,AIS_InteractiveObject)
protected:
diff --git a/src/AIS/AIS_TypeFilter.cxx b/src/AIS/AIS_TypeFilter.cxx
index a537006187..4d8221d18b 100644
--- a/src/AIS/AIS_TypeFilter.cxx
+++ b/src/AIS/AIS_TypeFilter.cxx
@@ -20,6 +20,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AIS_TypeFilter,SelectMgr_Filter)
+
AIS_TypeFilter::AIS_TypeFilter(const AIS_KindOfInteractive TheKind):
myKind(TheKind){}
diff --git a/src/AIS/AIS_TypeFilter.hxx b/src/AIS/AIS_TypeFilter.hxx
index a0ddfb44d4..4fa6230053 100644
--- a/src/AIS/AIS_TypeFilter.hxx
+++ b/src/AIS/AIS_TypeFilter.hxx
@@ -69,7 +69,7 @@ public:
- DEFINE_STANDARD_RTTI(AIS_TypeFilter,SelectMgr_Filter)
+ DEFINE_STANDARD_RTTIEXT(AIS_TypeFilter,SelectMgr_Filter)
protected:
diff --git a/src/APIHeaderSection/APIHeaderSection_EditHeader.cxx b/src/APIHeaderSection/APIHeaderSection_EditHeader.cxx
index 9bbdca62a1..0dd3bfa111 100644
--- a/src/APIHeaderSection/APIHeaderSection_EditHeader.cxx
+++ b/src/APIHeaderSection/APIHeaderSection_EditHeader.cxx
@@ -23,6 +23,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(APIHeaderSection_EditHeader,IFSelect_Editor)
+
static Standard_Boolean IsTimeStamp
(const Handle(TCollection_HAsciiString)& val)
{
diff --git a/src/APIHeaderSection/APIHeaderSection_EditHeader.hxx b/src/APIHeaderSection/APIHeaderSection_EditHeader.hxx
index 6b54e28eed..ca5543d907 100644
--- a/src/APIHeaderSection/APIHeaderSection_EditHeader.hxx
+++ b/src/APIHeaderSection/APIHeaderSection_EditHeader.hxx
@@ -55,7 +55,7 @@ public:
- DEFINE_STANDARD_RTTI(APIHeaderSection_EditHeader,IFSelect_Editor)
+ DEFINE_STANDARD_RTTIEXT(APIHeaderSection_EditHeader,IFSelect_Editor)
protected:
diff --git a/src/Adaptor2d/Adaptor2d_HCurve2d.cxx b/src/Adaptor2d/Adaptor2d_HCurve2d.cxx
index b4a7e3b40b..4b57119cdf 100644
--- a/src/Adaptor2d/Adaptor2d_HCurve2d.cxx
+++ b/src/Adaptor2d/Adaptor2d_HCurve2d.cxx
@@ -23,3 +23,5 @@
#include
#include
#include
+
+IMPLEMENT_STANDARD_RTTIEXT(Adaptor2d_HCurve2d,MMgt_TShared)
\ No newline at end of file
diff --git a/src/Adaptor2d/Adaptor2d_HCurve2d.hxx b/src/Adaptor2d/Adaptor2d_HCurve2d.hxx
index 4923873f8f..c8e6838556 100644
--- a/src/Adaptor2d/Adaptor2d_HCurve2d.hxx
+++ b/src/Adaptor2d/Adaptor2d_HCurve2d.hxx
@@ -119,7 +119,7 @@ public:
virtual Handle(Geom2d_BSplineCurve) BSpline() const;
- DEFINE_STANDARD_RTTI(Adaptor2d_HCurve2d,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(Adaptor2d_HCurve2d,MMgt_TShared)
};
#include
diff --git a/src/Adaptor2d/Adaptor2d_HLine2d.hxx b/src/Adaptor2d/Adaptor2d_HLine2d.hxx
index ed7aaf5dcd..de28c8d272 100644
--- a/src/Adaptor2d/Adaptor2d_HLine2d.hxx
+++ b/src/Adaptor2d/Adaptor2d_HLine2d.hxx
@@ -58,7 +58,7 @@ public:
- DEFINE_STANDARD_RTTI(Adaptor2d_HLine2d,Adaptor2d_HCurve2d)
+ DEFINE_STANDARD_RTTI_INLINE(Adaptor2d_HLine2d,Adaptor2d_HCurve2d)
protected:
diff --git a/src/Adaptor2d/Adaptor2d_HOffsetCurve.hxx b/src/Adaptor2d/Adaptor2d_HOffsetCurve.hxx
index 52e942ccd2..082d6718db 100644
--- a/src/Adaptor2d/Adaptor2d_HOffsetCurve.hxx
+++ b/src/Adaptor2d/Adaptor2d_HOffsetCurve.hxx
@@ -58,7 +58,7 @@ public:
- DEFINE_STANDARD_RTTI(Adaptor2d_HOffsetCurve,Adaptor2d_HCurve2d)
+ DEFINE_STANDARD_RTTI_INLINE(Adaptor2d_HOffsetCurve,Adaptor2d_HCurve2d)
protected:
diff --git a/src/Adaptor3d/Adaptor3d_HCurve.cxx b/src/Adaptor3d/Adaptor3d_HCurve.cxx
index ce006dfe39..160c1ecba2 100644
--- a/src/Adaptor3d/Adaptor3d_HCurve.cxx
+++ b/src/Adaptor3d/Adaptor3d_HCurve.cxx
@@ -22,3 +22,5 @@
#include
#include
#include
+
+IMPLEMENT_STANDARD_RTTIEXT(Adaptor3d_HCurve,MMgt_TShared)
\ No newline at end of file
diff --git a/src/Adaptor3d/Adaptor3d_HCurve.hxx b/src/Adaptor3d/Adaptor3d_HCurve.hxx
index 4b8e51806e..2ca8d2522d 100644
--- a/src/Adaptor3d/Adaptor3d_HCurve.hxx
+++ b/src/Adaptor3d/Adaptor3d_HCurve.hxx
@@ -137,7 +137,7 @@ public:
- DEFINE_STANDARD_RTTI(Adaptor3d_HCurve,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(Adaptor3d_HCurve,MMgt_TShared)
protected:
diff --git a/src/Adaptor3d/Adaptor3d_HCurveOnSurface.hxx b/src/Adaptor3d/Adaptor3d_HCurveOnSurface.hxx
index 832a7016e0..4ccc7d0e0d 100644
--- a/src/Adaptor3d/Adaptor3d_HCurveOnSurface.hxx
+++ b/src/Adaptor3d/Adaptor3d_HCurveOnSurface.hxx
@@ -62,7 +62,7 @@ public:
- DEFINE_STANDARD_RTTI(Adaptor3d_HCurveOnSurface,Adaptor3d_HCurve)
+ DEFINE_STANDARD_RTTI_INLINE(Adaptor3d_HCurveOnSurface,Adaptor3d_HCurve)
protected:
diff --git a/src/Adaptor3d/Adaptor3d_HIsoCurve.hxx b/src/Adaptor3d/Adaptor3d_HIsoCurve.hxx
index 8d2cbc83e8..56da57daf7 100644
--- a/src/Adaptor3d/Adaptor3d_HIsoCurve.hxx
+++ b/src/Adaptor3d/Adaptor3d_HIsoCurve.hxx
@@ -62,7 +62,7 @@ public:
- DEFINE_STANDARD_RTTI(Adaptor3d_HIsoCurve,Adaptor3d_HCurve)
+ DEFINE_STANDARD_RTTI_INLINE(Adaptor3d_HIsoCurve,Adaptor3d_HCurve)
protected:
diff --git a/src/Adaptor3d/Adaptor3d_HSurface.cxx b/src/Adaptor3d/Adaptor3d_HSurface.cxx
index 9cbdd327cb..f49e1cc1d6 100644
--- a/src/Adaptor3d/Adaptor3d_HSurface.cxx
+++ b/src/Adaptor3d/Adaptor3d_HSurface.cxx
@@ -24,3 +24,5 @@
#include
#include
#include
+
+IMPLEMENT_STANDARD_RTTIEXT(Adaptor3d_HSurface,MMgt_TShared)
\ No newline at end of file
diff --git a/src/Adaptor3d/Adaptor3d_HSurface.hxx b/src/Adaptor3d/Adaptor3d_HSurface.hxx
index 86ee29f54b..bd3d63258e 100644
--- a/src/Adaptor3d/Adaptor3d_HSurface.hxx
+++ b/src/Adaptor3d/Adaptor3d_HSurface.hxx
@@ -164,7 +164,7 @@ public:
- DEFINE_STANDARD_RTTI(Adaptor3d_HSurface,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(Adaptor3d_HSurface,MMgt_TShared)
protected:
diff --git a/src/Adaptor3d/Adaptor3d_HVertex.cxx b/src/Adaptor3d/Adaptor3d_HVertex.cxx
index 8252cdc307..00b1f6e641 100644
--- a/src/Adaptor3d/Adaptor3d_HVertex.cxx
+++ b/src/Adaptor3d/Adaptor3d_HVertex.cxx
@@ -19,6 +19,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(Adaptor3d_HVertex,MMgt_TShared)
+
Adaptor3d_HVertex::Adaptor3d_HVertex ()
{}
diff --git a/src/Adaptor3d/Adaptor3d_HVertex.hxx b/src/Adaptor3d/Adaptor3d_HVertex.hxx
index 498b63b3ee..56220cb3a1 100644
--- a/src/Adaptor3d/Adaptor3d_HVertex.hxx
+++ b/src/Adaptor3d/Adaptor3d_HVertex.hxx
@@ -57,7 +57,7 @@ public:
- DEFINE_STANDARD_RTTI(Adaptor3d_HVertex,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(Adaptor3d_HVertex,MMgt_TShared)
protected:
diff --git a/src/Adaptor3d/Adaptor3d_TopolTool.cxx b/src/Adaptor3d/Adaptor3d_TopolTool.cxx
index 2747c0bfd6..fcf9ae978f 100644
--- a/src/Adaptor3d/Adaptor3d_TopolTool.cxx
+++ b/src/Adaptor3d/Adaptor3d_TopolTool.cxx
@@ -27,6 +27,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(Adaptor3d_TopolTool,MMgt_TShared)
+
#define myInfinite Precision::Infinite()
static void GetConeApexParam(const gp_Cone& C, Standard_Real& U, Standard_Real& V)
diff --git a/src/Adaptor3d/Adaptor3d_TopolTool.hxx b/src/Adaptor3d/Adaptor3d_TopolTool.hxx
index aa172beb4e..74912268c7 100644
--- a/src/Adaptor3d/Adaptor3d_TopolTool.hxx
+++ b/src/Adaptor3d/Adaptor3d_TopolTool.hxx
@@ -154,7 +154,7 @@ public:
- DEFINE_STANDARD_RTTI(Adaptor3d_TopolTool,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(Adaptor3d_TopolTool,MMgt_TShared)
protected:
diff --git a/src/AppDef/AppDef_LinearCriteria.cxx b/src/AppDef/AppDef_LinearCriteria.cxx
index 6a167eb375..826c6572ce 100644
--- a/src/AppDef/AppDef_LinearCriteria.cxx
+++ b/src/AppDef/AppDef_LinearCriteria.cxx
@@ -38,6 +38,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AppDef_LinearCriteria,AppDef_SmoothCriterion)
+
static Standard_Integer order(const Handle(PLib_Base)& B)
{
return (*( Handle(PLib_HermitJacobi)*)&B)->NivConstr();
diff --git a/src/AppDef/AppDef_LinearCriteria.hxx b/src/AppDef/AppDef_LinearCriteria.hxx
index 5868ea59db..ca11ee53c8 100644
--- a/src/AppDef/AppDef_LinearCriteria.hxx
+++ b/src/AppDef/AppDef_LinearCriteria.hxx
@@ -86,7 +86,7 @@ public:
- DEFINE_STANDARD_RTTI(AppDef_LinearCriteria,AppDef_SmoothCriterion)
+ DEFINE_STANDARD_RTTIEXT(AppDef_LinearCriteria,AppDef_SmoothCriterion)
protected:
diff --git a/src/AppDef/AppDef_SmoothCriterion.cxx b/src/AppDef/AppDef_SmoothCriterion.cxx
index 5cd0fb9eea..7c554212cb 100644
--- a/src/AppDef/AppDef_SmoothCriterion.cxx
+++ b/src/AppDef/AppDef_SmoothCriterion.cxx
@@ -21,3 +21,5 @@
#include
#include
#include
+
+IMPLEMENT_STANDARD_RTTIEXT(AppDef_SmoothCriterion,MMgt_TShared)
\ No newline at end of file
diff --git a/src/AppDef/AppDef_SmoothCriterion.hxx b/src/AppDef/AppDef_SmoothCriterion.hxx
index 74f10bee3d..56cff99340 100644
--- a/src/AppDef/AppDef_SmoothCriterion.hxx
+++ b/src/AppDef/AppDef_SmoothCriterion.hxx
@@ -80,7 +80,7 @@ public:
- DEFINE_STANDARD_RTTI(AppDef_SmoothCriterion,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(AppDef_SmoothCriterion,MMgt_TShared)
protected:
diff --git a/src/AppStd/AppStd_Application.cxx b/src/AppStd/AppStd_Application.cxx
index aabc8fbc54..471ea329d1 100644
--- a/src/AppStd/AppStd_Application.cxx
+++ b/src/AppStd/AppStd_Application.cxx
@@ -20,6 +20,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AppStd_Application,TDocStd_Application)
+
//=======================================================================
//function : AppStd_Application
//purpose :
diff --git a/src/AppStd/AppStd_Application.hxx b/src/AppStd/AppStd_Application.hxx
index 548384ba56..7c09ba9e98 100644
--- a/src/AppStd/AppStd_Application.hxx
+++ b/src/AppStd/AppStd_Application.hxx
@@ -49,7 +49,7 @@ public:
- DEFINE_STANDARD_RTTI(AppStd_Application,TDocStd_Application)
+ DEFINE_STANDARD_RTTIEXT(AppStd_Application,TDocStd_Application)
protected:
diff --git a/src/AppStdL/AppStdL_Application.cxx b/src/AppStdL/AppStdL_Application.cxx
index 17609f67b9..a04b6622a2 100644
--- a/src/AppStdL/AppStdL_Application.cxx
+++ b/src/AppStdL/AppStdL_Application.cxx
@@ -20,6 +20,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(AppStdL_Application,TDocStd_Application)
+
//=======================================================================
//function : AppStdL_Application
//purpose :
diff --git a/src/AppStdL/AppStdL_Application.hxx b/src/AppStdL/AppStdL_Application.hxx
index a7ca50de80..7c0987b1ef 100644
--- a/src/AppStdL/AppStdL_Application.hxx
+++ b/src/AppStdL/AppStdL_Application.hxx
@@ -49,7 +49,7 @@ public:
- DEFINE_STANDARD_RTTI(AppStdL_Application,TDocStd_Application)
+ DEFINE_STANDARD_RTTIEXT(AppStdL_Application,TDocStd_Application)
protected:
diff --git a/src/Approx/Approx_CurvlinFunc.cxx b/src/Approx/Approx_CurvlinFunc.cxx
index 00f7b8b95c..84bea9e7c8 100644
--- a/src/Approx/Approx_CurvlinFunc.cxx
+++ b/src/Approx/Approx_CurvlinFunc.cxx
@@ -31,6 +31,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(Approx_CurvlinFunc,MMgt_TShared)
+
#ifdef OCCT_DEBUG_CHRONO
#include
static OSD_Chronometer chr_uparam;
diff --git a/src/Approx/Approx_CurvlinFunc.hxx b/src/Approx/Approx_CurvlinFunc.hxx
index e73848ddea..05493b9c85 100644
--- a/src/Approx/Approx_CurvlinFunc.hxx
+++ b/src/Approx/Approx_CurvlinFunc.hxx
@@ -102,7 +102,7 @@ public:
- DEFINE_STANDARD_RTTI(Approx_CurvlinFunc,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(Approx_CurvlinFunc,MMgt_TShared)
protected:
diff --git a/src/Approx/Approx_SweepFunction.cxx b/src/Approx/Approx_SweepFunction.cxx
index b2ae480cab..634b77f8ae 100644
--- a/src/Approx/Approx_SweepFunction.cxx
+++ b/src/Approx/Approx_SweepFunction.cxx
@@ -21,6 +21,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(Approx_SweepFunction,MMgt_TShared)
+
// Standard_Boolean Approx_SweepFunction::D1(const Standard_Real Param,const Standard_Real First,const Standard_Real Last,TColgp_Array1OfPnt& Poles,TColgp_Array1OfVec& DPoles,TColgp_Array1OfPnt2d& Poles2d,TColgp_Array1OfVec2d& DPoles2d,TColStd_Array1OfReal& Weigths,TColStd_Array1OfReal& DWeigths)
Standard_Boolean Approx_SweepFunction::D1(const Standard_Real ,const Standard_Real ,const Standard_Real ,TColgp_Array1OfPnt& ,TColgp_Array1OfVec& ,TColgp_Array1OfPnt2d& ,TColgp_Array1OfVec2d& ,TColStd_Array1OfReal& ,TColStd_Array1OfReal& )
{
diff --git a/src/Approx/Approx_SweepFunction.hxx b/src/Approx/Approx_SweepFunction.hxx
index 21682d9899..8455044e07 100644
--- a/src/Approx/Approx_SweepFunction.hxx
+++ b/src/Approx/Approx_SweepFunction.hxx
@@ -131,7 +131,7 @@ public:
- DEFINE_STANDARD_RTTI(Approx_SweepFunction,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(Approx_SweepFunction,MMgt_TShared)
protected:
diff --git a/src/Aspect/Aspect_AspectFillArea.cxx b/src/Aspect/Aspect_AspectFillArea.cxx
index 5469ef8c3e..57a248a140 100644
--- a/src/Aspect/Aspect_AspectFillArea.cxx
+++ b/src/Aspect/Aspect_AspectFillArea.cxx
@@ -31,6 +31,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(Aspect_AspectFillArea,MMgt_TShared)
+
//-Aliases
//-Global data definitions
// -- interior
diff --git a/src/Aspect/Aspect_AspectFillArea.hxx b/src/Aspect/Aspect_AspectFillArea.hxx
index 768d4304ef..c9a47cfc9a 100644
--- a/src/Aspect/Aspect_AspectFillArea.hxx
+++ b/src/Aspect/Aspect_AspectFillArea.hxx
@@ -93,7 +93,7 @@ public:
- DEFINE_STANDARD_RTTI(Aspect_AspectFillArea,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(Aspect_AspectFillArea,MMgt_TShared)
protected:
diff --git a/src/Aspect/Aspect_AspectLine.cxx b/src/Aspect/Aspect_AspectLine.cxx
index 598aeb1682..2a875d0e1f 100644
--- a/src/Aspect/Aspect_AspectLine.cxx
+++ b/src/Aspect/Aspect_AspectLine.cxx
@@ -30,6 +30,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(Aspect_AspectLine,MMgt_TShared)
+
//-Aliases
//-Global data definitions
// -- color
diff --git a/src/Aspect/Aspect_AspectLine.hxx b/src/Aspect/Aspect_AspectLine.hxx
index 3c0fcf196d..0e81548076 100644
--- a/src/Aspect/Aspect_AspectLine.hxx
+++ b/src/Aspect/Aspect_AspectLine.hxx
@@ -62,7 +62,7 @@ public:
- DEFINE_STANDARD_RTTI(Aspect_AspectLine,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(Aspect_AspectLine,MMgt_TShared)
protected:
diff --git a/src/Aspect/Aspect_AspectMarker.cxx b/src/Aspect/Aspect_AspectMarker.cxx
index 8e6e52efcf..c68ea940ab 100644
--- a/src/Aspect/Aspect_AspectMarker.cxx
+++ b/src/Aspect/Aspect_AspectMarker.cxx
@@ -30,6 +30,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(Aspect_AspectMarker,MMgt_TShared)
+
//-Aliases
//-Global data definitions
// -- color
diff --git a/src/Aspect/Aspect_AspectMarker.hxx b/src/Aspect/Aspect_AspectMarker.hxx
index f44ac071e5..ed64b68374 100644
--- a/src/Aspect/Aspect_AspectMarker.hxx
+++ b/src/Aspect/Aspect_AspectMarker.hxx
@@ -65,7 +65,7 @@ public:
- DEFINE_STANDARD_RTTI(Aspect_AspectMarker,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(Aspect_AspectMarker,MMgt_TShared)
protected:
diff --git a/src/Aspect/Aspect_CircularGrid.cxx b/src/Aspect/Aspect_CircularGrid.cxx
index 6834f5eede..dc9f38df05 100644
--- a/src/Aspect/Aspect_CircularGrid.cxx
+++ b/src/Aspect/Aspect_CircularGrid.cxx
@@ -20,6 +20,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(Aspect_CircularGrid,Aspect_Grid)
+
Aspect_CircularGrid::Aspect_CircularGrid
(const Quantity_Length aRadiusStep,
const Standard_Integer aDivisionNumber,
diff --git a/src/Aspect/Aspect_CircularGrid.hxx b/src/Aspect/Aspect_CircularGrid.hxx
index 91cf9e76f4..e3a3f3cc70 100644
--- a/src/Aspect/Aspect_CircularGrid.hxx
+++ b/src/Aspect/Aspect_CircularGrid.hxx
@@ -66,7 +66,7 @@ public:
- DEFINE_STANDARD_RTTI(Aspect_CircularGrid,Aspect_Grid)
+ DEFINE_STANDARD_RTTIEXT(Aspect_CircularGrid,Aspect_Grid)
protected:
diff --git a/src/Aspect/Aspect_DisplayConnection.cxx b/src/Aspect/Aspect_DisplayConnection.cxx
index dfab6bf3e3..e15349ac92 100755
--- a/src/Aspect/Aspect_DisplayConnection.cxx
+++ b/src/Aspect/Aspect_DisplayConnection.cxx
@@ -17,6 +17,8 @@
#include
+IMPLEMENT_STANDARD_RTTIEXT(Aspect_DisplayConnection,Standard_Transient)
+
// =======================================================================
// function : Aspect_DisplayConnection
// purpose :
diff --git a/src/Aspect/Aspect_DisplayConnection.hxx b/src/Aspect/Aspect_DisplayConnection.hxx
index 82165da9bf..d2080a7b58 100755
--- a/src/Aspect/Aspect_DisplayConnection.hxx
+++ b/src/Aspect/Aspect_DisplayConnection.hxx
@@ -76,7 +76,7 @@ private:
public:
- DEFINE_STANDARD_RTTI(Aspect_DisplayConnection, Standard_Transient) // Type definition
+ DEFINE_STANDARD_RTTIEXT(Aspect_DisplayConnection,Standard_Transient) // Type definition
};
diff --git a/src/Aspect/Aspect_Grid.cxx b/src/Aspect/Aspect_Grid.cxx
index c68d809fab..8bc3de3d1b 100644
--- a/src/Aspect/Aspect_Grid.cxx
+++ b/src/Aspect/Aspect_Grid.cxx
@@ -16,6 +16,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(Aspect_Grid,MMgt_TShared)
+
Aspect_Grid::Aspect_Grid(
const Quantity_Length anXOrigin,
const Quantity_Length anYOrigin,
diff --git a/src/Aspect/Aspect_Grid.hxx b/src/Aspect/Aspect_Grid.hxx
index 06d838d317..6dfc711d7d 100644
--- a/src/Aspect/Aspect_Grid.hxx
+++ b/src/Aspect/Aspect_Grid.hxx
@@ -109,7 +109,7 @@ public:
- DEFINE_STANDARD_RTTI(Aspect_Grid,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(Aspect_Grid,MMgt_TShared)
protected:
diff --git a/src/Aspect/Aspect_RectangularGrid.cxx b/src/Aspect/Aspect_RectangularGrid.cxx
index 9d76801e55..cf6824b68a 100644
--- a/src/Aspect/Aspect_RectangularGrid.cxx
+++ b/src/Aspect/Aspect_RectangularGrid.cxx
@@ -19,6 +19,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(Aspect_RectangularGrid,Aspect_Grid)
+
Aspect_RectangularGrid::Aspect_RectangularGrid(
const Quantity_Length aXStep,
const Quantity_Length aYStep,
diff --git a/src/Aspect/Aspect_RectangularGrid.hxx b/src/Aspect/Aspect_RectangularGrid.hxx
index 3481b99af4..cb31b0f438 100644
--- a/src/Aspect/Aspect_RectangularGrid.hxx
+++ b/src/Aspect/Aspect_RectangularGrid.hxx
@@ -79,7 +79,7 @@ public:
- DEFINE_STANDARD_RTTI(Aspect_RectangularGrid,Aspect_Grid)
+ DEFINE_STANDARD_RTTIEXT(Aspect_RectangularGrid,Aspect_Grid)
protected:
diff --git a/src/Aspect/Aspect_Window.cxx b/src/Aspect/Aspect_Window.cxx
index 0add021068..5fa8abecca 100644
--- a/src/Aspect/Aspect_Window.cxx
+++ b/src/Aspect/Aspect_Window.cxx
@@ -31,6 +31,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(Aspect_Window,MMgt_TShared)
+
//-Aliases
//-Global data definitions
//-Destructors
diff --git a/src/Aspect/Aspect_Window.hxx b/src/Aspect/Aspect_Window.hxx
index 77e6444df5..f309c67d73 100644
--- a/src/Aspect/Aspect_Window.hxx
+++ b/src/Aspect/Aspect_Window.hxx
@@ -117,7 +117,7 @@ public:
//! Returns native Window FB config (GLXFBConfig on Xlib)
Standard_EXPORT virtual Aspect_FBConfig NativeFBConfig() const = 0;
- DEFINE_STANDARD_RTTI(Aspect_Window,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(Aspect_Window,MMgt_TShared)
protected:
diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_7.cxx b/src/BOPAlgo/BOPAlgo_PaveFiller_7.cxx
index 1ecde6d32c..dd7002dd10 100644
--- a/src/BOPAlgo/BOPAlgo_PaveFiller_7.cxx
+++ b/src/BOPAlgo/BOPAlgo_PaveFiller_7.cxx
@@ -293,7 +293,7 @@ class BOPAlgo_BPC {
const TopoDS_Face& GetFace() const {
return myF;
}
- const Handle_Geom2d_Curve& GetCurve2d() const {
+ const Handle(Geom2d_Curve)& GetCurve2d() const {
return myCurve;
}
Standard_Boolean IsToUpdate() const {
@@ -307,7 +307,7 @@ class BOPAlgo_BPC {
protected:
TopoDS_Edge myE;
TopoDS_Face myF;
- Handle_Geom2d_Curve myCurve;
+ Handle(Geom2d_Curve) myCurve;
Standard_Boolean myToUpdate;
};
//=======================================================================
diff --git a/src/BOPDS/BOPDS_CommonBlock.cxx b/src/BOPDS/BOPDS_CommonBlock.cxx
index b687e844ce..a7f6b75cb5 100644
--- a/src/BOPDS/BOPDS_CommonBlock.cxx
+++ b/src/BOPDS/BOPDS_CommonBlock.cxx
@@ -17,6 +17,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BOPDS_CommonBlock,MMgt_TShared)
+
//=======================================================================
// function:
// purpose:
diff --git a/src/BOPDS/BOPDS_CommonBlock.hxx b/src/BOPDS/BOPDS_CommonBlock.hxx
index 038b0a1472..2a84edd1d3 100644
--- a/src/BOPDS/BOPDS_CommonBlock.hxx
+++ b/src/BOPDS/BOPDS_CommonBlock.hxx
@@ -145,7 +145,7 @@ public:
- DEFINE_STANDARD_RTTI(BOPDS_CommonBlock,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(BOPDS_CommonBlock,MMgt_TShared)
protected:
diff --git a/src/BOPDS/BOPDS_PaveBlock.cxx b/src/BOPDS/BOPDS_PaveBlock.cxx
index f2c840caba..dd2701fa1a 100755
--- a/src/BOPDS/BOPDS_PaveBlock.cxx
+++ b/src/BOPDS/BOPDS_PaveBlock.cxx
@@ -23,6 +23,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BOPDS_PaveBlock,MMgt_TShared)
+
#ifdef _MSC_VER
#pragma warning ( disable : 4291 )
#endif
diff --git a/src/BOPDS/BOPDS_PaveBlock.hxx b/src/BOPDS/BOPDS_PaveBlock.hxx
index 9de2986602..5462f5a613 100644
--- a/src/BOPDS/BOPDS_PaveBlock.hxx
+++ b/src/BOPDS/BOPDS_PaveBlock.hxx
@@ -205,7 +205,7 @@ public:
- DEFINE_STANDARD_RTTI(BOPDS_PaveBlock,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(BOPDS_PaveBlock,MMgt_TShared)
protected:
diff --git a/src/BOPTest/BOPTest_DrawableShape.cxx b/src/BOPTest/BOPTest_DrawableShape.cxx
index 4758f34223..acdd451155 100644
--- a/src/BOPTest/BOPTest_DrawableShape.cxx
+++ b/src/BOPTest/BOPTest_DrawableShape.cxx
@@ -45,6 +45,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BOPTest_DrawableShape,DBRep_DrawableShape)
+
//=======================================================================
//function :
//purpose :
diff --git a/src/BOPTest/BOPTest_DrawableShape.hxx b/src/BOPTest/BOPTest_DrawableShape.hxx
index 444b30aab0..0f19c74f92 100644
--- a/src/BOPTest/BOPTest_DrawableShape.hxx
+++ b/src/BOPTest/BOPTest_DrawableShape.hxx
@@ -50,7 +50,7 @@ public:
- DEFINE_STANDARD_RTTI(BOPTest_DrawableShape,DBRep_DrawableShape)
+ DEFINE_STANDARD_RTTIEXT(BOPTest_DrawableShape,DBRep_DrawableShape)
protected:
diff --git a/src/BRep/BRep_Curve3D.cxx b/src/BRep/BRep_Curve3D.cxx
index 5d085d49c1..86a06deab8 100644
--- a/src/BRep/BRep_Curve3D.cxx
+++ b/src/BRep/BRep_Curve3D.cxx
@@ -22,6 +22,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRep_Curve3D,BRep_GCurve)
+
//=======================================================================
//function : BRep_Curve3D
//purpose :
diff --git a/src/BRep/BRep_Curve3D.hxx b/src/BRep/BRep_Curve3D.hxx
index 84a725d672..e459d1ddff 100644
--- a/src/BRep/BRep_Curve3D.hxx
+++ b/src/BRep/BRep_Curve3D.hxx
@@ -57,7 +57,7 @@ public:
- DEFINE_STANDARD_RTTI(BRep_Curve3D,BRep_GCurve)
+ DEFINE_STANDARD_RTTIEXT(BRep_Curve3D,BRep_GCurve)
protected:
diff --git a/src/BRep/BRep_CurveOn2Surfaces.cxx b/src/BRep/BRep_CurveOn2Surfaces.cxx
index 0541c96b31..dedf017f53 100644
--- a/src/BRep/BRep_CurveOn2Surfaces.cxx
+++ b/src/BRep/BRep_CurveOn2Surfaces.cxx
@@ -23,6 +23,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRep_CurveOn2Surfaces,BRep_CurveRepresentation)
+
//=======================================================================
//function : BRep_CurveOn2Surfaces
//purpose :
diff --git a/src/BRep/BRep_CurveOn2Surfaces.hxx b/src/BRep/BRep_CurveOn2Surfaces.hxx
index 7f64f34959..867423ff24 100644
--- a/src/BRep/BRep_CurveOn2Surfaces.hxx
+++ b/src/BRep/BRep_CurveOn2Surfaces.hxx
@@ -69,7 +69,7 @@ public:
- DEFINE_STANDARD_RTTI(BRep_CurveOn2Surfaces,BRep_CurveRepresentation)
+ DEFINE_STANDARD_RTTIEXT(BRep_CurveOn2Surfaces,BRep_CurveRepresentation)
protected:
diff --git a/src/BRep/BRep_CurveOnClosedSurface.cxx b/src/BRep/BRep_CurveOnClosedSurface.cxx
index ab84995cf7..5f0b028931 100644
--- a/src/BRep/BRep_CurveOnClosedSurface.cxx
+++ b/src/BRep/BRep_CurveOnClosedSurface.cxx
@@ -24,6 +24,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRep_CurveOnClosedSurface,BRep_CurveOnSurface)
+
//=======================================================================
//function : BRep_CurveOnClosedSurface
//purpose :
diff --git a/src/BRep/BRep_CurveOnClosedSurface.hxx b/src/BRep/BRep_CurveOnClosedSurface.hxx
index 352e4326af..5bed28216b 100644
--- a/src/BRep/BRep_CurveOnClosedSurface.hxx
+++ b/src/BRep/BRep_CurveOnClosedSurface.hxx
@@ -81,7 +81,7 @@ public:
- DEFINE_STANDARD_RTTI(BRep_CurveOnClosedSurface,BRep_CurveOnSurface)
+ DEFINE_STANDARD_RTTIEXT(BRep_CurveOnClosedSurface,BRep_CurveOnSurface)
protected:
diff --git a/src/BRep/BRep_CurveOnSurface.cxx b/src/BRep/BRep_CurveOnSurface.cxx
index 1e5224d557..f5f6cd377b 100644
--- a/src/BRep/BRep_CurveOnSurface.cxx
+++ b/src/BRep/BRep_CurveOnSurface.cxx
@@ -25,6 +25,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRep_CurveOnSurface,BRep_GCurve)
+
//=======================================================================
//function : BRep_CurveOnSurface
//purpose :
diff --git a/src/BRep/BRep_CurveOnSurface.hxx b/src/BRep/BRep_CurveOnSurface.hxx
index 1f0e011170..baece2ff34 100644
--- a/src/BRep/BRep_CurveOnSurface.hxx
+++ b/src/BRep/BRep_CurveOnSurface.hxx
@@ -74,7 +74,7 @@ public:
- DEFINE_STANDARD_RTTI(BRep_CurveOnSurface,BRep_GCurve)
+ DEFINE_STANDARD_RTTIEXT(BRep_CurveOnSurface,BRep_GCurve)
protected:
diff --git a/src/BRep/BRep_CurveRepresentation.cxx b/src/BRep/BRep_CurveRepresentation.cxx
index 72697793d9..29362dd5d3 100644
--- a/src/BRep/BRep_CurveRepresentation.cxx
+++ b/src/BRep/BRep_CurveRepresentation.cxx
@@ -28,6 +28,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRep_CurveRepresentation,MMgt_TShared)
+
//=======================================================================
//function : BRep_CurveRepresentation
//purpose :
diff --git a/src/BRep/BRep_CurveRepresentation.hxx b/src/BRep/BRep_CurveRepresentation.hxx
index 1543fa4578..9bb0ae84ff 100644
--- a/src/BRep/BRep_CurveRepresentation.hxx
+++ b/src/BRep/BRep_CurveRepresentation.hxx
@@ -147,7 +147,7 @@ public:
- DEFINE_STANDARD_RTTI(BRep_CurveRepresentation,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(BRep_CurveRepresentation,MMgt_TShared)
protected:
diff --git a/src/BRep/BRep_GCurve.cxx b/src/BRep/BRep_GCurve.cxx
index db29bbbf54..22c36ccfe4 100644
--- a/src/BRep/BRep_GCurve.cxx
+++ b/src/BRep/BRep_GCurve.cxx
@@ -20,6 +20,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRep_GCurve,BRep_CurveRepresentation)
+
//=======================================================================
//function : BRep_GCurve
//purpose :
diff --git a/src/BRep/BRep_GCurve.hxx b/src/BRep/BRep_GCurve.hxx
index ce8ff73eed..1d2c4d5433 100644
--- a/src/BRep/BRep_GCurve.hxx
+++ b/src/BRep/BRep_GCurve.hxx
@@ -60,7 +60,7 @@ public:
- DEFINE_STANDARD_RTTI(BRep_GCurve,BRep_CurveRepresentation)
+ DEFINE_STANDARD_RTTIEXT(BRep_GCurve,BRep_CurveRepresentation)
protected:
diff --git a/src/BRep/BRep_PointOnCurve.cxx b/src/BRep/BRep_PointOnCurve.cxx
index d90147ed8b..737c7c1f2b 100644
--- a/src/BRep/BRep_PointOnCurve.cxx
+++ b/src/BRep/BRep_PointOnCurve.cxx
@@ -20,6 +20,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRep_PointOnCurve,BRep_PointRepresentation)
+
//=======================================================================
//function : BRep_PointOnCurve
//purpose :
diff --git a/src/BRep/BRep_PointOnCurve.hxx b/src/BRep/BRep_PointOnCurve.hxx
index d89f4babaf..3e22ee967c 100644
--- a/src/BRep/BRep_PointOnCurve.hxx
+++ b/src/BRep/BRep_PointOnCurve.hxx
@@ -51,7 +51,7 @@ public:
- DEFINE_STANDARD_RTTI(BRep_PointOnCurve,BRep_PointRepresentation)
+ DEFINE_STANDARD_RTTIEXT(BRep_PointOnCurve,BRep_PointRepresentation)
protected:
diff --git a/src/BRep/BRep_PointOnCurveOnSurface.cxx b/src/BRep/BRep_PointOnCurveOnSurface.cxx
index e667535a50..d82010bd17 100644
--- a/src/BRep/BRep_PointOnCurveOnSurface.cxx
+++ b/src/BRep/BRep_PointOnCurveOnSurface.cxx
@@ -21,6 +21,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRep_PointOnCurveOnSurface,BRep_PointsOnSurface)
+
//=======================================================================
//function : BRep_PointOnCurveOnSurface
//purpose :
diff --git a/src/BRep/BRep_PointOnCurveOnSurface.hxx b/src/BRep/BRep_PointOnCurveOnSurface.hxx
index 39703037ef..73eeec8361 100644
--- a/src/BRep/BRep_PointOnCurveOnSurface.hxx
+++ b/src/BRep/BRep_PointOnCurveOnSurface.hxx
@@ -53,7 +53,7 @@ public:
- DEFINE_STANDARD_RTTI(BRep_PointOnCurveOnSurface,BRep_PointsOnSurface)
+ DEFINE_STANDARD_RTTIEXT(BRep_PointOnCurveOnSurface,BRep_PointsOnSurface)
protected:
diff --git a/src/BRep/BRep_PointOnSurface.cxx b/src/BRep/BRep_PointOnSurface.cxx
index aacb5c62b5..282f4b3ddf 100644
--- a/src/BRep/BRep_PointOnSurface.cxx
+++ b/src/BRep/BRep_PointOnSurface.cxx
@@ -20,6 +20,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRep_PointOnSurface,BRep_PointsOnSurface)
+
//=======================================================================
//function : BRep_PointOnSurface
//purpose :
diff --git a/src/BRep/BRep_PointOnSurface.hxx b/src/BRep/BRep_PointOnSurface.hxx
index 3796c0886f..878dd65de8 100644
--- a/src/BRep/BRep_PointOnSurface.hxx
+++ b/src/BRep/BRep_PointOnSurface.hxx
@@ -50,7 +50,7 @@ public:
- DEFINE_STANDARD_RTTI(BRep_PointOnSurface,BRep_PointsOnSurface)
+ DEFINE_STANDARD_RTTIEXT(BRep_PointOnSurface,BRep_PointsOnSurface)
protected:
diff --git a/src/BRep/BRep_PointRepresentation.cxx b/src/BRep/BRep_PointRepresentation.cxx
index e247fa486f..2f8f20cff5 100644
--- a/src/BRep/BRep_PointRepresentation.cxx
+++ b/src/BRep/BRep_PointRepresentation.cxx
@@ -23,6 +23,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRep_PointRepresentation,MMgt_TShared)
+
//=======================================================================
//function : BRep_PointRepresentation
//purpose :
diff --git a/src/BRep/BRep_PointRepresentation.hxx b/src/BRep/BRep_PointRepresentation.hxx
index 65fd8290cb..52145d5bdf 100644
--- a/src/BRep/BRep_PointRepresentation.hxx
+++ b/src/BRep/BRep_PointRepresentation.hxx
@@ -87,7 +87,7 @@ public:
- DEFINE_STANDARD_RTTI(BRep_PointRepresentation,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(BRep_PointRepresentation,MMgt_TShared)
protected:
diff --git a/src/BRep/BRep_PointsOnSurface.cxx b/src/BRep/BRep_PointsOnSurface.cxx
index ca7d4aa5ab..740a09abc6 100644
--- a/src/BRep/BRep_PointsOnSurface.cxx
+++ b/src/BRep/BRep_PointsOnSurface.cxx
@@ -20,6 +20,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRep_PointsOnSurface,BRep_PointRepresentation)
+
//=======================================================================
//function : BRep_PointsOnSurface
//purpose :
diff --git a/src/BRep/BRep_PointsOnSurface.hxx b/src/BRep/BRep_PointsOnSurface.hxx
index 50d83db7fd..83f23f64ed 100644
--- a/src/BRep/BRep_PointsOnSurface.hxx
+++ b/src/BRep/BRep_PointsOnSurface.hxx
@@ -43,7 +43,7 @@ public:
- DEFINE_STANDARD_RTTI(BRep_PointsOnSurface,BRep_PointRepresentation)
+ DEFINE_STANDARD_RTTIEXT(BRep_PointsOnSurface,BRep_PointRepresentation)
protected:
diff --git a/src/BRep/BRep_Polygon3D.cxx b/src/BRep/BRep_Polygon3D.cxx
index 0fff5bd9b7..921a4ed1f9 100644
--- a/src/BRep/BRep_Polygon3D.cxx
+++ b/src/BRep/BRep_Polygon3D.cxx
@@ -22,6 +22,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRep_Polygon3D,BRep_CurveRepresentation)
+
//=======================================================================
//function : BRep_Polygon3D
//purpose :
diff --git a/src/BRep/BRep_Polygon3D.hxx b/src/BRep/BRep_Polygon3D.hxx
index c07359276e..ff5e6d8d95 100644
--- a/src/BRep/BRep_Polygon3D.hxx
+++ b/src/BRep/BRep_Polygon3D.hxx
@@ -53,7 +53,7 @@ public:
- DEFINE_STANDARD_RTTI(BRep_Polygon3D,BRep_CurveRepresentation)
+ DEFINE_STANDARD_RTTIEXT(BRep_Polygon3D,BRep_CurveRepresentation)
protected:
diff --git a/src/BRep/BRep_PolygonOnClosedSurface.cxx b/src/BRep/BRep_PolygonOnClosedSurface.cxx
index a5e9b2eb33..8696bb8164 100644
--- a/src/BRep/BRep_PolygonOnClosedSurface.cxx
+++ b/src/BRep/BRep_PolygonOnClosedSurface.cxx
@@ -22,6 +22,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRep_PolygonOnClosedSurface,BRep_PolygonOnSurface)
+
//=======================================================================
//function : BRep_PolygonOnClosedSurface
//purpose :
diff --git a/src/BRep/BRep_PolygonOnClosedSurface.hxx b/src/BRep/BRep_PolygonOnClosedSurface.hxx
index 467167876f..79ee1ec633 100644
--- a/src/BRep/BRep_PolygonOnClosedSurface.hxx
+++ b/src/BRep/BRep_PolygonOnClosedSurface.hxx
@@ -54,7 +54,7 @@ public:
- DEFINE_STANDARD_RTTI(BRep_PolygonOnClosedSurface,BRep_PolygonOnSurface)
+ DEFINE_STANDARD_RTTIEXT(BRep_PolygonOnClosedSurface,BRep_PolygonOnSurface)
protected:
diff --git a/src/BRep/BRep_PolygonOnClosedTriangulation.cxx b/src/BRep/BRep_PolygonOnClosedTriangulation.cxx
index 5ddbf521e2..83bcc2bac5 100644
--- a/src/BRep/BRep_PolygonOnClosedTriangulation.cxx
+++ b/src/BRep/BRep_PolygonOnClosedTriangulation.cxx
@@ -22,6 +22,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRep_PolygonOnClosedTriangulation,BRep_PolygonOnTriangulation)
+
//=======================================================================
//function : BRep_PolygonOnClosedTriangulation
//purpose :
diff --git a/src/BRep/BRep_PolygonOnClosedTriangulation.hxx b/src/BRep/BRep_PolygonOnClosedTriangulation.hxx
index 81b69f8ff6..bc9eba85a5 100644
--- a/src/BRep/BRep_PolygonOnClosedTriangulation.hxx
+++ b/src/BRep/BRep_PolygonOnClosedTriangulation.hxx
@@ -54,7 +54,7 @@ public:
- DEFINE_STANDARD_RTTI(BRep_PolygonOnClosedTriangulation,BRep_PolygonOnTriangulation)
+ DEFINE_STANDARD_RTTIEXT(BRep_PolygonOnClosedTriangulation,BRep_PolygonOnTriangulation)
protected:
diff --git a/src/BRep/BRep_PolygonOnSurface.cxx b/src/BRep/BRep_PolygonOnSurface.cxx
index 1904c3080b..197b5b8fa4 100644
--- a/src/BRep/BRep_PolygonOnSurface.cxx
+++ b/src/BRep/BRep_PolygonOnSurface.cxx
@@ -23,6 +23,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRep_PolygonOnSurface,BRep_CurveRepresentation)
+
//=======================================================================
//function : BRep_PolygonOnSurface
//purpose :
diff --git a/src/BRep/BRep_PolygonOnSurface.hxx b/src/BRep/BRep_PolygonOnSurface.hxx
index 80f81e0594..b0c165798e 100644
--- a/src/BRep/BRep_PolygonOnSurface.hxx
+++ b/src/BRep/BRep_PolygonOnSurface.hxx
@@ -62,7 +62,7 @@ public:
- DEFINE_STANDARD_RTTI(BRep_PolygonOnSurface,BRep_CurveRepresentation)
+ DEFINE_STANDARD_RTTIEXT(BRep_PolygonOnSurface,BRep_CurveRepresentation)
protected:
diff --git a/src/BRep/BRep_PolygonOnTriangulation.cxx b/src/BRep/BRep_PolygonOnTriangulation.cxx
index 31ae62c80b..24beb3dc9a 100644
--- a/src/BRep/BRep_PolygonOnTriangulation.cxx
+++ b/src/BRep/BRep_PolygonOnTriangulation.cxx
@@ -22,6 +22,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRep_PolygonOnTriangulation,BRep_CurveRepresentation)
+
//=======================================================================
//function : BRep_PolygonOnTriangulation
//purpose :
diff --git a/src/BRep/BRep_PolygonOnTriangulation.hxx b/src/BRep/BRep_PolygonOnTriangulation.hxx
index fdfefce73b..b400ea9d74 100644
--- a/src/BRep/BRep_PolygonOnTriangulation.hxx
+++ b/src/BRep/BRep_PolygonOnTriangulation.hxx
@@ -61,7 +61,7 @@ public:
- DEFINE_STANDARD_RTTI(BRep_PolygonOnTriangulation,BRep_CurveRepresentation)
+ DEFINE_STANDARD_RTTIEXT(BRep_PolygonOnTriangulation,BRep_CurveRepresentation)
protected:
diff --git a/src/BRep/BRep_TEdge.cxx b/src/BRep/BRep_TEdge.cxx
index 4f79b292ed..1a90362909 100644
--- a/src/BRep/BRep_TEdge.cxx
+++ b/src/BRep/BRep_TEdge.cxx
@@ -25,6 +25,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRep_TEdge,TopoDS_TEdge)
+
static const Standard_Integer ParameterMask = 1;
static const Standard_Integer RangeMask = 2;
static const Standard_Integer DegeneratedMask = 4;
diff --git a/src/BRep/BRep_TEdge.hxx b/src/BRep/BRep_TEdge.hxx
index 93754d06a8..2bd0642fb8 100644
--- a/src/BRep/BRep_TEdge.hxx
+++ b/src/BRep/BRep_TEdge.hxx
@@ -84,7 +84,7 @@ public:
- DEFINE_STANDARD_RTTI(BRep_TEdge,TopoDS_TEdge)
+ DEFINE_STANDARD_RTTIEXT(BRep_TEdge,TopoDS_TEdge)
protected:
diff --git a/src/BRep/BRep_TFace.cxx b/src/BRep/BRep_TFace.cxx
index 8f118b32cb..b4d35e4585 100644
--- a/src/BRep/BRep_TFace.cxx
+++ b/src/BRep/BRep_TFace.cxx
@@ -23,6 +23,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRep_TFace,TopoDS_TFace)
+
//=======================================================================
//function : BRep_TFace
//purpose :
diff --git a/src/BRep/BRep_TFace.hxx b/src/BRep/BRep_TFace.hxx
index cadecebcbe..c24337de47 100644
--- a/src/BRep/BRep_TFace.hxx
+++ b/src/BRep/BRep_TFace.hxx
@@ -91,7 +91,7 @@ public:
- DEFINE_STANDARD_RTTI(BRep_TFace,TopoDS_TFace)
+ DEFINE_STANDARD_RTTIEXT(BRep_TFace,TopoDS_TFace)
protected:
diff --git a/src/BRep/BRep_TVertex.cxx b/src/BRep/BRep_TVertex.cxx
index 3e18cc0fe2..067f8197c0 100644
--- a/src/BRep/BRep_TVertex.cxx
+++ b/src/BRep/BRep_TVertex.cxx
@@ -21,6 +21,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRep_TVertex,TopoDS_TVertex)
+
//=======================================================================
//function : BRep_TVertex
//purpose :
diff --git a/src/BRep/BRep_TVertex.hxx b/src/BRep/BRep_TVertex.hxx
index c729e64908..9729fb52f6 100644
--- a/src/BRep/BRep_TVertex.hxx
+++ b/src/BRep/BRep_TVertex.hxx
@@ -65,7 +65,7 @@ public:
- DEFINE_STANDARD_RTTI(BRep_TVertex,TopoDS_TVertex)
+ DEFINE_STANDARD_RTTIEXT(BRep_TVertex,TopoDS_TVertex)
protected:
diff --git a/src/BRep/BRep_Tool.cxx b/src/BRep/BRep_Tool.cxx
index 8b8e2f62c3..9cb3a1900b 100644
--- a/src/BRep/BRep_Tool.cxx
+++ b/src/BRep/BRep_Tool.cxx
@@ -68,6 +68,7 @@
#include
#include
#include
+#include
//modified by NIZNHY-PKV Fri Oct 17 14:13:29 2008f
static
diff --git a/src/BRepAdaptor/BRepAdaptor_HCompCurve.hxx b/src/BRepAdaptor/BRepAdaptor_HCompCurve.hxx
index 1937c5a077..f0b085758b 100644
--- a/src/BRepAdaptor/BRepAdaptor_HCompCurve.hxx
+++ b/src/BRepAdaptor/BRepAdaptor_HCompCurve.hxx
@@ -62,7 +62,7 @@ public:
- DEFINE_STANDARD_RTTI(BRepAdaptor_HCompCurve,Adaptor3d_HCurve)
+ DEFINE_STANDARD_RTTI_INLINE(BRepAdaptor_HCompCurve,Adaptor3d_HCurve)
protected:
diff --git a/src/BRepAdaptor/BRepAdaptor_HCurve.hxx b/src/BRepAdaptor/BRepAdaptor_HCurve.hxx
index c2a14db99c..0e048d93df 100644
--- a/src/BRepAdaptor/BRepAdaptor_HCurve.hxx
+++ b/src/BRepAdaptor/BRepAdaptor_HCurve.hxx
@@ -62,7 +62,7 @@ public:
- DEFINE_STANDARD_RTTI(BRepAdaptor_HCurve,Adaptor3d_HCurve)
+ DEFINE_STANDARD_RTTI_INLINE(BRepAdaptor_HCurve,Adaptor3d_HCurve)
protected:
diff --git a/src/BRepAdaptor/BRepAdaptor_HCurve2d.hxx b/src/BRepAdaptor/BRepAdaptor_HCurve2d.hxx
index 65ea34cd21..9549145068 100644
--- a/src/BRepAdaptor/BRepAdaptor_HCurve2d.hxx
+++ b/src/BRepAdaptor/BRepAdaptor_HCurve2d.hxx
@@ -58,7 +58,7 @@ public:
- DEFINE_STANDARD_RTTI(BRepAdaptor_HCurve2d,Adaptor2d_HCurve2d)
+ DEFINE_STANDARD_RTTI_INLINE(BRepAdaptor_HCurve2d,Adaptor2d_HCurve2d)
protected:
diff --git a/src/BRepAdaptor/BRepAdaptor_HSurface.hxx b/src/BRepAdaptor/BRepAdaptor_HSurface.hxx
index dc30043d26..cc544cf03f 100644
--- a/src/BRepAdaptor/BRepAdaptor_HSurface.hxx
+++ b/src/BRepAdaptor/BRepAdaptor_HSurface.hxx
@@ -58,7 +58,7 @@ public:
- DEFINE_STANDARD_RTTI(BRepAdaptor_HSurface,Adaptor3d_HSurface)
+ DEFINE_STANDARD_RTTI_INLINE(BRepAdaptor_HSurface,Adaptor3d_HSurface)
protected:
diff --git a/src/BRepAlgo/BRepAlgo_AsDes.cxx b/src/BRepAlgo/BRepAlgo_AsDes.cxx
index 0cb13f9654..97641ab223 100644
--- a/src/BRepAlgo/BRepAlgo_AsDes.cxx
+++ b/src/BRepAlgo/BRepAlgo_AsDes.cxx
@@ -21,6 +21,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRepAlgo_AsDes,MMgt_TShared)
+
//=======================================================================
//function : BRepAlgo_AsDes
//purpose :
diff --git a/src/BRepAlgo/BRepAlgo_AsDes.hxx b/src/BRepAlgo/BRepAlgo_AsDes.hxx
index 85c126e29a..a54d80575a 100644
--- a/src/BRepAlgo/BRepAlgo_AsDes.hxx
+++ b/src/BRepAlgo/BRepAlgo_AsDes.hxx
@@ -76,7 +76,7 @@ public:
- DEFINE_STANDARD_RTTI(BRepAlgo_AsDes,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(BRepAlgo_AsDes,MMgt_TShared)
protected:
diff --git a/src/BRepAlgo/BRepAlgo_EdgeConnector.cxx b/src/BRepAlgo/BRepAlgo_EdgeConnector.cxx
index ab9fc951aa..62ed293e06 100644
--- a/src/BRepAlgo/BRepAlgo_EdgeConnector.cxx
+++ b/src/BRepAlgo/BRepAlgo_EdgeConnector.cxx
@@ -28,6 +28,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRepAlgo_EdgeConnector,MMgt_TShared)
+
//=======================================================================
//function : Create
//purpose :
diff --git a/src/BRepAlgo/BRepAlgo_EdgeConnector.hxx b/src/BRepAlgo/BRepAlgo_EdgeConnector.hxx
index 258ced28ba..fd8258e882 100644
--- a/src/BRepAlgo/BRepAlgo_EdgeConnector.hxx
+++ b/src/BRepAlgo/BRepAlgo_EdgeConnector.hxx
@@ -72,7 +72,7 @@ public:
- DEFINE_STANDARD_RTTI(BRepAlgo_EdgeConnector,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(BRepAlgo_EdgeConnector,MMgt_TShared)
protected:
diff --git a/src/BRepApprox/BRepApprox_ApproxLine.cxx b/src/BRepApprox/BRepApprox_ApproxLine.cxx
index 5973ebd698..fd1f62e6b7 100644
--- a/src/BRepApprox/BRepApprox_ApproxLine.cxx
+++ b/src/BRepApprox/BRepApprox_ApproxLine.cxx
@@ -23,6 +23,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRepApprox_ApproxLine,MMgt_TShared)
+
//=======================================================================
//function : BRepApprox_ApproxLine
//purpose :
diff --git a/src/BRepApprox/BRepApprox_ApproxLine.hxx b/src/BRepApprox/BRepApprox_ApproxLine.hxx
index a5117f5fb5..7186c27c42 100644
--- a/src/BRepApprox/BRepApprox_ApproxLine.hxx
+++ b/src/BRepApprox/BRepApprox_ApproxLine.hxx
@@ -50,7 +50,7 @@ public:
- DEFINE_STANDARD_RTTI(BRepApprox_ApproxLine,MMgt_TShared)
+ DEFINE_STANDARD_RTTIEXT(BRepApprox_ApproxLine,MMgt_TShared)
protected:
diff --git a/src/BRepBlend/BRepBlend_AppFunc.cxx b/src/BRepBlend/BRepBlend_AppFunc.cxx
index 9ba49f15fd..10a7734e35 100644
--- a/src/BRepBlend/BRepBlend_AppFunc.cxx
+++ b/src/BRepBlend/BRepBlend_AppFunc.cxx
@@ -23,6 +23,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRepBlend_AppFunc,BRepBlend_AppFuncRoot)
+
BRepBlend_AppFunc::BRepBlend_AppFunc(Handle(BRepBlend_Line)& Line,
Blend_Function& Func,
const Standard_Real Tol3d,
diff --git a/src/BRepBlend/BRepBlend_AppFunc.hxx b/src/BRepBlend/BRepBlend_AppFunc.hxx
index e137aab76a..7e52e33456 100644
--- a/src/BRepBlend/BRepBlend_AppFunc.hxx
+++ b/src/BRepBlend/BRepBlend_AppFunc.hxx
@@ -50,7 +50,7 @@ public:
- DEFINE_STANDARD_RTTI(BRepBlend_AppFunc,BRepBlend_AppFuncRoot)
+ DEFINE_STANDARD_RTTIEXT(BRepBlend_AppFunc,BRepBlend_AppFuncRoot)
protected:
diff --git a/src/BRepBlend/BRepBlend_AppFuncRoot.cxx b/src/BRepBlend/BRepBlend_AppFuncRoot.cxx
index 2fc921c733..8a97359728 100644
--- a/src/BRepBlend/BRepBlend_AppFuncRoot.cxx
+++ b/src/BRepBlend/BRepBlend_AppFuncRoot.cxx
@@ -30,6 +30,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRepBlend_AppFuncRoot,Approx_SweepFunction)
+
BRepBlend_AppFuncRoot::BRepBlend_AppFuncRoot(Handle(BRepBlend_Line)& Line,
Blend_AppFunction& Func,
const Standard_Real Tol3d,
diff --git a/src/BRepBlend/BRepBlend_AppFuncRoot.hxx b/src/BRepBlend/BRepBlend_AppFuncRoot.hxx
index 9fa8752ce6..3a01b50ec5 100644
--- a/src/BRepBlend/BRepBlend_AppFuncRoot.hxx
+++ b/src/BRepBlend/BRepBlend_AppFuncRoot.hxx
@@ -133,7 +133,7 @@ public:
- DEFINE_STANDARD_RTTI(BRepBlend_AppFuncRoot,Approx_SweepFunction)
+ DEFINE_STANDARD_RTTIEXT(BRepBlend_AppFuncRoot,Approx_SweepFunction)
protected:
diff --git a/src/BRepBlend/BRepBlend_AppFuncRst.cxx b/src/BRepBlend/BRepBlend_AppFuncRst.cxx
index 613351e315..d61808261b 100644
--- a/src/BRepBlend/BRepBlend_AppFuncRst.cxx
+++ b/src/BRepBlend/BRepBlend_AppFuncRst.cxx
@@ -23,6 +23,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRepBlend_AppFuncRst,BRepBlend_AppFuncRoot)
+
BRepBlend_AppFuncRst::BRepBlend_AppFuncRst (Handle(BRepBlend_Line)& Line,
Blend_SurfRstFunction& Func,
const Standard_Real Tol3d,
diff --git a/src/BRepBlend/BRepBlend_AppFuncRst.hxx b/src/BRepBlend/BRepBlend_AppFuncRst.hxx
index cdf3c7022a..faf58742c1 100644
--- a/src/BRepBlend/BRepBlend_AppFuncRst.hxx
+++ b/src/BRepBlend/BRepBlend_AppFuncRst.hxx
@@ -49,7 +49,7 @@ public:
- DEFINE_STANDARD_RTTI(BRepBlend_AppFuncRst,BRepBlend_AppFuncRoot)
+ DEFINE_STANDARD_RTTIEXT(BRepBlend_AppFuncRst,BRepBlend_AppFuncRoot)
protected:
diff --git a/src/BRepBlend/BRepBlend_AppFuncRstRst.cxx b/src/BRepBlend/BRepBlend_AppFuncRstRst.cxx
index 137fa94656..dfda9f6512 100644
--- a/src/BRepBlend/BRepBlend_AppFuncRstRst.cxx
+++ b/src/BRepBlend/BRepBlend_AppFuncRstRst.cxx
@@ -23,6 +23,8 @@
#include
#include
+IMPLEMENT_STANDARD_RTTIEXT(BRepBlend_AppFuncRstRst,BRepBlend_AppFuncRoot)
+
BRepBlend_AppFuncRstRst::BRepBlend_AppFuncRstRst (Handle(BRepBlend_Line)& Line,
Blend_RstRstFunction& Func,
const Standard_Real Tol3d,
diff --git a/src/BRepBlend/BRepBlend_AppFuncRstRst.hxx b/src/BRepBlend/BRepBlend_AppFuncRstRst.hxx
index 3cbe5fe3aa..34b136d7a7 100644
--- a/src/BRepBlend/BRepBlend_AppFuncRstRst.hxx
+++ b/src/BRepBlend/BRepBlend_AppFuncRstRst.hxx
@@ -49,7 +49,7 @@ public:
- DEFINE_STANDARD_RTTI(BRepBlend_AppFuncRstRst,BRepBlend_AppFuncRoot)
+ DEFINE_STANDARD_RTTIEXT(BRepBlend_AppFuncRstRst,BRepBlend_AppFuncRoot)
protected:
diff --git a/src/BRepBlend/BRepBlend_Line.cxx b/src/BRepBlend/BRepBlend_Line.cxx
index de6293d391..fdf90a9272 100644
--- a/src/BRepBlend/BRepBlend_Line.cxx
+++ b/src/BRepBlend/BRepBlend_Line.cxx
@@ -19,6 +19,8 @@
#include