1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0031547: Visualization - V3d_View creates V3d_Trihedron instance

- moved creating of V3d_View::myTrihedron from constructor to first attempt of displaying or calling it;
- moved creating of V3d_Viewer::myRGrid and V3d_Viewer::myCGrid to to first attempt of displaying or calling them;
- renamed V3d_Viewer::IsActive() to V3d_Viewer::IsGridActive();
- redefined V3d_View::Trihedron() and V3d_Viewer::Grid() by adding new argument toCreate
for opportunity to check the existence of the objects without their recreating.
This commit is contained in:
mkrylova 2020-12-31 09:37:51 +03:00 committed by bugmaster
parent 5de4b704fe
commit 5634c81a9b
11 changed files with 166 additions and 95 deletions

View File

@ -255,7 +255,7 @@ void CGeometryDoc::MoveEvent2D(const Standard_Integer x,
const Standard_Integer y, const Standard_Integer y,
const Handle(V3d_View)& aView) const Handle(V3d_View)& aView)
{ {
if(aView->Viewer()->Grid()->IsActive()) if (aView->Viewer()->IsGridActive())
{ {
Standard_Real aGridX=0,aGridY=0,aGridZ=0; Standard_Real aGridX=0,aGridY=0,aGridZ=0;
aView->ConvertToGrid(x,y,aGridX,aGridY,aGridZ); aView->ConvertToGrid(x,y,aGridX,aGridY,aGridZ);

View File

@ -197,7 +197,7 @@ void OCC_2dView::OnBUTTONGridValues()
void OCC_2dView::OnUpdateBUTTONGridValues(CCmdUI* pCmdUI) void OCC_2dView::OnUpdateBUTTONGridValues(CCmdUI* pCmdUI)
{ {
Handle(V3d_Viewer) aViewer = myView->Viewer(); Handle(V3d_Viewer) aViewer = myView->Viewer();
pCmdUI-> Enable( aViewer->IsActive() ); pCmdUI-> Enable( aViewer->IsGridActive() );
} }
void OCC_2dView::OnBUTTONGridCancel() void OCC_2dView::OnBUTTONGridCancel()
@ -211,7 +211,7 @@ void OCC_2dView::OnBUTTONGridCancel()
void OCC_2dView::OnUpdateBUTTONGridCancel(CCmdUI* pCmdUI) void OCC_2dView::OnUpdateBUTTONGridCancel(CCmdUI* pCmdUI)
{ {
Handle(V3d_Viewer) aViewer = myView->Viewer(); Handle(V3d_Viewer) aViewer = myView->Viewer();
pCmdUI-> Enable( aViewer->IsActive() ); pCmdUI-> Enable( aViewer->IsGridActive() );
} }
void OCC_2dView::OnSize(UINT nType, int cx, int cy) void OCC_2dView::OnSize(UINT nType, int cx, int cy)

View File

@ -2707,7 +2707,7 @@ void AIS_ViewController::contextLazyMoveTo (const Handle(AIS_InteractiveContext)
Handle(SelectMgr_EntityOwner) aNewPicked = theCtx->DetectedOwner(); Handle(SelectMgr_EntityOwner) aNewPicked = theCtx->DetectedOwner();
if (theView->Viewer()->Grid()->IsActive() if (theView->Viewer()->IsGridActive()
&& theView->Viewer()->GridEcho()) && theView->Viewer()->GridEcho())
{ {
if (aNewPicked.IsNull()) if (aNewPicked.IsNull())

View File

@ -101,7 +101,8 @@ static Standard_Integer OCC281bug (Draw_Interpretor& di, Standard_Integer argc,
Handle(Graphic3d_AspectMarker3d) GridAsp = new Graphic3d_AspectMarker3d(AspectTypeOfMarker, Quantity_NOC_BLUE1, 10.); Handle(Graphic3d_AspectMarker3d) GridAsp = new Graphic3d_AspectMarker3d(AspectTypeOfMarker, Quantity_NOC_BLUE1, 10.);
aViewer->SetGridEcho(GridAsp); aViewer->SetGridEcho(GridAsp);
if (aViewer->IsActive()) { if (aViewer->IsGridActive())
{
if (aViewer->GridEcho()) { if (aViewer->GridEcho()) {
Standard_Real X,Y,Z; Standard_Real X,Y,Z;
aView->ConvertToGrid(x,y,X,Y,Z); aView->ConvertToGrid(x,y,X,Y,Z);

View File

@ -68,7 +68,6 @@ V3d_View::V3d_View (const Handle(V3d_Viewer)& theViewer, const V3d_TypeOfView th
MyViewer (theViewer.operator->()), MyViewer (theViewer.operator->()),
SwitchSetFront (Standard_False), SwitchSetFront (Standard_False),
myZRotation (Standard_False), myZRotation (Standard_False),
myTrihedron (new V3d_Trihedron()),
MyTrsf (1, 4, 1, 4) MyTrsf (1, 4, 1, 4)
{ {
myView = theViewer->Driver()->CreateView (theViewer->StructureManager()); myView = theViewer->Driver()->CreateView (theViewer->StructureManager());
@ -201,7 +200,7 @@ void V3d_View::SetWindow (const Handle(Aspect_Window)& theWindow,
//function : Remove //function : Remove
//purpose : //purpose :
//============================================================================= //=============================================================================
void V3d_View::Remove() const void V3d_View::Remove()
{ {
if (!MyGrid.IsNull()) if (!MyGrid.IsNull())
{ {
@ -1571,41 +1570,48 @@ void V3d_View::WindowFit (const Standard_Integer theMinXp,
//function : ConvertToGrid //function : ConvertToGrid
//purpose : //purpose :
//======================================================================= //=======================================================================
void V3d_View::ConvertToGrid(const Standard_Integer Xp, void V3d_View::ConvertToGrid(const Standard_Integer theXp,
const Standard_Integer Yp, const Standard_Integer theYp,
Standard_Real& Xg, Standard_Real& theXg,
Standard_Real& Yg, Standard_Real& theYg,
Standard_Real& Zg) const Standard_Real& theZg) const
{ {
Graphic3d_Vertex aVrp; Graphic3d_Vec3d anXYZ;
Standard_Real anX, anY, aZ; Convert (theXp, theYp, anXYZ.x(), anXYZ.y(), anXYZ.z());
Convert (Xp, Yp, anX, anY, aZ);
aVrp.SetCoord (anX, anY, aZ);
if( MyViewer->Grid()->IsActive() ) { Graphic3d_Vertex aVrp;
Graphic3d_Vertex aNewVrp = Compute (aVrp) ; aVrp.SetCoord (anXYZ.x(), anXYZ.y(), anXYZ.z());
aNewVrp.Coord (Xg,Yg,Zg) ; if (MyViewer->IsGridActive())
} else {
aVrp.Coord (Xg,Yg,Zg) ; Graphic3d_Vertex aNewVrp = Compute (aVrp);
aNewVrp.Coord (theXg, theYg, theZg);
}
else
{
aVrp.Coord (theXg, theYg, theZg);
}
} }
//======================================================================= //=======================================================================
//function : ConvertToGrid //function : ConvertToGrid
//purpose : //purpose :
//======================================================================= //=======================================================================
void V3d_View::ConvertToGrid(const Standard_Real X, void V3d_View::ConvertToGrid(const Standard_Real theX,
const Standard_Real Y, const Standard_Real theY,
const Standard_Real Z, const Standard_Real theZ,
Standard_Real& Xg, Standard_Real& theXg,
Standard_Real& Yg, Standard_Real& theYg,
Standard_Real& Zg) const Standard_Real& theZg) const
{ {
if( MyViewer->Grid()->IsActive() ) { if (MyViewer->IsGridActive())
Graphic3d_Vertex aVrp (X,Y,Z) ; {
Graphic3d_Vertex aNewVrp = Compute (aVrp) ; Graphic3d_Vertex aVrp (theX, theY, theZ);
aNewVrp.Coord(Xg,Yg,Zg) ; Graphic3d_Vertex aNewVrp = Compute (aVrp);
} else { aNewVrp.Coord (theXg, theYg, theZg);
Xg = X; Yg = Y; Zg = Z; }
else
{
theXg = theX; theYg = theY; theZg = theZ;
} }
} }

View File

@ -128,7 +128,7 @@ public:
const Standard_Integer theY2); const Standard_Integer theY2);
//! Destroys the view. //! Destroys the view.
Standard_EXPORT void Remove() const; Standard_EXPORT void Remove();
//! Deprecated, Redraw() should be used instead. //! Deprecated, Redraw() should be used instead.
Standard_EXPORT void Update() const; Standard_EXPORT void Update() const;
@ -287,7 +287,14 @@ public:
Standard_EXPORT Standard_Boolean SetImmediateUpdate (const Standard_Boolean theImmediateUpdate); Standard_EXPORT Standard_Boolean SetImmediateUpdate (const Standard_Boolean theImmediateUpdate);
//! Returns trihedron object. //! Returns trihedron object.
const Handle(V3d_Trihedron)& Trihedron() const { return myTrihedron; } const Handle(V3d_Trihedron)& Trihedron (bool theToCreate = true)
{
if (myTrihedron.IsNull() && theToCreate)
{
myTrihedron = new V3d_Trihedron();
}
return myTrihedron;
}
//! Customization of the ZBUFFER Triedron. //! Customization of the ZBUFFER Triedron.
//! XColor,YColor,ZColor - colors of axis //! XColor,YColor,ZColor - colors of axis

View File

@ -197,9 +197,8 @@ Graphic3d_Vertex V3d_View::Compute (const Graphic3d_Vertex& theVertex) const
+ gp_Vec (aPnt0); + gp_Vec (aPnt0);
return Graphic3d_Vertex (aResult.X(), aResult.Y(), aResult.Z()); return Graphic3d_Vertex (aResult.X(), aResult.Y(), aResult.Z());
} }
else // IsCircular else if (Handle(Aspect_CircularGrid) aCircleGrid = Handle(Aspect_CircularGrid)::DownCast (MyGrid))
{ {
Handle(Aspect_CircularGrid) aCircleGrid = Handle(Aspect_CircularGrid)::DownCast (MyGrid);
const Standard_Real anAlpha = M_PI / Standard_Real (aCircleGrid->DivisionNumber()); const Standard_Real anAlpha = M_PI / Standard_Real (aCircleGrid->DivisionNumber());
// project point on plane to grid local space // project point on plane to grid local space
@ -217,6 +216,7 @@ Graphic3d_Vertex V3d_View::Compute (const Graphic3d_Vertex& theVertex) const
const gp_Vec aResult = aGridX * aLocalX + aGridY * aLocalY + gp_Vec (aPnt0); const gp_Vec aResult = aGridX * aLocalX + aGridY * aLocalY + gp_Vec (aPnt0);
return Graphic3d_Vertex (aResult.X(), aResult.Y(), aResult.Z()); return Graphic3d_Vertex (aResult.X(), aResult.Y(), aResult.Z());
} }
return Graphic3d_Vertex (0.0, 0.0, 0.0);
} }
//============================================================================= //=============================================================================
@ -230,10 +230,11 @@ void V3d_View::ZBufferTriedronSetup(const Quantity_Color& theXColor,
const Standard_Real theAxisDiametr, const Standard_Real theAxisDiametr,
const Standard_Integer theNbFacettes) const Standard_Integer theNbFacettes)
{ {
myTrihedron->SetArrowsColor (theXColor, theYColor, theZColor); const Handle(V3d_Trihedron)& aTrihedron = Trihedron (true);
myTrihedron->SetSizeRatio (theSizeRatio); aTrihedron->SetArrowsColor (theXColor, theYColor, theZColor);
myTrihedron->SetNbFacets (theNbFacettes); aTrihedron->SetSizeRatio (theSizeRatio);
myTrihedron->SetArrowDiameter (theAxisDiametr); aTrihedron->SetNbFacets (theNbFacettes);
aTrihedron->SetArrowDiameter (theAxisDiametr);
} }
//============================================================================= //=============================================================================
@ -245,12 +246,13 @@ void V3d_View::TriedronDisplay (const Aspect_TypeOfTriedronPosition thePosition,
const Standard_Real theScale, const Standard_Real theScale,
const V3d_TypeOfVisualization theMode) const V3d_TypeOfVisualization theMode)
{ {
myTrihedron->SetLabelsColor (theColor); const Handle(V3d_Trihedron)& aTrihedron = Trihedron (true);
myTrihedron->SetScale (theScale); aTrihedron->SetLabelsColor (theColor);
myTrihedron->SetPosition (thePosition); aTrihedron->SetScale (theScale);
myTrihedron->SetWireframe (theMode == V3d_WIREFRAME); aTrihedron->SetPosition (thePosition);
aTrihedron->SetWireframe (theMode == V3d_WIREFRAME);
myTrihedron->Display (*this); aTrihedron->Display (*this);
} }
//============================================================================= //=============================================================================
@ -259,7 +261,10 @@ void V3d_View::TriedronDisplay (const Aspect_TypeOfTriedronPosition thePosition,
//============================================================================= //=============================================================================
void V3d_View::TriedronErase() void V3d_View::TriedronErase()
{ {
myTrihedron->Erase(); if (!myTrihedron.IsNull())
{
myTrihedron->Erase();
}
} }
//============================================================================= //=============================================================================

View File

@ -58,8 +58,7 @@ V3d_Viewer::V3d_Viewer (const Handle(Graphic3d_GraphicDriver)& theDriver)
myGridEcho (Standard_True), myGridEcho (Standard_True),
myGridEchoLastVert (ShortRealLast(), ShortRealLast(), ShortRealLast()) myGridEchoLastVert (ShortRealLast(), ShortRealLast(), ShortRealLast())
{ {
myRGrid = new V3d_RectangularGrid (this, Quantity_Color (Quantity_NOC_GRAY50), Quantity_Color (Quantity_NOC_GRAY70)); //
myCGrid = new V3d_CircularGrid (this, Quantity_Color (Quantity_NOC_GRAY50), Quantity_Color (Quantity_NOC_GRAY70));
} }
// ======================================================================== // ========================================================================
@ -113,9 +112,11 @@ void V3d_Viewer::SetViewOn (const Handle(V3d_View)& theView)
{ {
theView->SetLightOn (anActiveLightIter.Value()); theView->SetLightOn (anActiveLightIter.Value());
} }
if (Handle(Aspect_Grid) aGrid = Grid (false))
theView->SetGrid (myPrivilegedPlane, Grid ()); {
theView->SetGridActivity (Grid ()->IsActive ()); theView->SetGrid (myPrivilegedPlane, aGrid);
theView->SetGridActivity (aGrid->IsActive());
}
if (theView->SetImmediateUpdate (Standard_False)) if (theView->SetImmediateUpdate (Standard_False))
{ {
theView->Redraw(); theView->Redraw();
@ -454,10 +455,11 @@ void V3d_Viewer::SetDefaultLights()
void V3d_Viewer::SetPrivilegedPlane (const gp_Ax3& thePlane) void V3d_Viewer::SetPrivilegedPlane (const gp_Ax3& thePlane)
{ {
myPrivilegedPlane = thePlane; myPrivilegedPlane = thePlane;
Grid()->SetDrawMode(Grid()->DrawMode()); Handle(Aspect_Grid) aGrid = Grid (true);
aGrid->SetDrawMode (aGrid->DrawMode()); // aGrid->UpdateDisplay();
for (V3d_ListOfView::Iterator anActiveViewIter (myActiveViews); anActiveViewIter.More(); anActiveViewIter.Next()) for (V3d_ListOfView::Iterator anActiveViewIter (myActiveViews); anActiveViewIter.More(); anActiveViewIter.Next())
{ {
anActiveViewIter.Value()->SetGrid (myPrivilegedPlane, Grid()); anActiveViewIter.Value()->SetGrid (myPrivilegedPlane, aGrid);
} }
if (myDisplayPlane) if (myDisplayPlane)
@ -478,7 +480,7 @@ void V3d_Viewer::DisplayPrivilegedPlane (const Standard_Boolean theOnOff, const
if (!myDisplayPlane) if (!myDisplayPlane)
{ {
if (!myPlaneStructure.IsNull()) if (!myPlaneStructure.IsNull())
{ {
myPlaneStructure->Erase(); myPlaneStructure->Erase();
} }
return; return;

View File

@ -352,51 +352,61 @@ public: //! @name grid management
//! Returns TRUE when grid echo must be displayed at hit point. //! Returns TRUE when grid echo must be displayed at hit point.
Standard_Boolean GridEcho() const { return myGridEcho; } Standard_Boolean GridEcho() const { return myGridEcho; }
//! Returns Standard_True if a grid is activated in <me>. //! Returns Standard_True if a grid is activated in <me>.
Standard_EXPORT Standard_Boolean IsActive() const; Standard_EXPORT Standard_Boolean IsGridActive();
//! Returns the defined grid in <me>. //! Returns the defined grid in <me>.
Standard_EXPORT Handle(Aspect_Grid) Grid() const; Handle(Aspect_Grid) Grid (bool theToCreate = true) { return Grid (myGridType, theToCreate); }
//! Returns the defined grid in <me>.
Standard_EXPORT Handle(Aspect_Grid) Grid (Aspect_GridType theGridType, bool theToCreate = true);
//! Returns the current grid type defined in <me>. //! Returns the current grid type defined in <me>.
Aspect_GridType GridType() const { return myGridType; } Aspect_GridType GridType() const { return myGridType; }
//! Returns the current grid draw mode defined in <me>. //! Returns the current grid draw mode defined in <me>.
Standard_EXPORT Aspect_GridDrawMode GridDrawMode() const; Standard_EXPORT Aspect_GridDrawMode GridDrawMode();
//! Returns the definition of the rectangular grid. //! Returns the definition of the rectangular grid.
Standard_EXPORT void RectangularGridValues (Standard_Real& XOrigin, Standard_Real& YOrigin, Standard_Real& XStep, Standard_Real& YStep, Standard_Real& RotationAngle) const; Standard_EXPORT void RectangularGridValues (Standard_Real& theXOrigin, Standard_Real& theYOrigin,
Standard_Real& theXStep, Standard_Real& theYStep,
Standard_Real& theRotationAngle);
//! Sets the definition of the rectangular grid. //! Sets the definition of the rectangular grid.
//! <XOrigin>, <YOrigin> defines the origin of the grid. //! <XOrigin>, <YOrigin> defines the origin of the grid.
//! <XStep> defines the interval between 2 vertical lines. //! <XStep> defines the interval between 2 vertical lines.
//! <YStep> defines the interval between 2 horizontal lines. //! <YStep> defines the interval between 2 horizontal lines.
//! <RotationAngle> defines the rotation angle of the grid. //! <RotationAngle> defines the rotation angle of the grid.
Standard_EXPORT void SetRectangularGridValues (const Standard_Real XOrigin, const Standard_Real YOrigin, const Standard_Real XStep, const Standard_Real YStep, const Standard_Real RotationAngle); Standard_EXPORT void SetRectangularGridValues (const Standard_Real XOrigin, const Standard_Real YOrigin, const Standard_Real XStep, const Standard_Real YStep, const Standard_Real RotationAngle);
//! Returns the definition of the circular grid. //! Returns the definition of the circular grid.
Standard_EXPORT void CircularGridValues (Standard_Real& XOrigin, Standard_Real& YOrigin, Standard_Real& RadiusStep, Standard_Integer& DivisionNumber, Standard_Real& RotationAngle) const; Standard_EXPORT void CircularGridValues (Standard_Real& theXOrigin, Standard_Real& theYOrigin,
Standard_Real& theRadiusStep,
Standard_Integer& theDivisionNumber,
Standard_Real& theRotationAngle);
//! Sets the definition of the circular grid. //! Sets the definition of the circular grid.
//! <XOrigin>, <YOrigin> defines the origin of the grid. //! <XOrigin>, <YOrigin> defines the origin of the grid.
//! <RadiusStep> defines the interval between 2 circles. //! <RadiusStep> defines the interval between 2 circles.
//! <DivisionNumber> defines the section number of one half circle. //! <DivisionNumber> defines the section number of one half circle.
//! <RotationAngle> defines the rotation angle of the grid. //! <RotationAngle> defines the rotation angle of the grid.
Standard_EXPORT void SetCircularGridValues (const Standard_Real XOrigin, const Standard_Real YOrigin, const Standard_Real RadiusStep, const Standard_Integer DivisionNumber, const Standard_Real RotationAngle); Standard_EXPORT void SetCircularGridValues (const Standard_Real XOrigin, const Standard_Real YOrigin, const Standard_Real RadiusStep, const Standard_Integer DivisionNumber, const Standard_Real RotationAngle);
//! Returns the location and the size of the grid. //! Returns the location and the size of the grid.
Standard_EXPORT void CircularGridGraphicValues (Standard_Real& Radius, Standard_Real& OffSet) const; Standard_EXPORT void CircularGridGraphicValues (Standard_Real& theRadius,
Standard_Real& theOffSet);
//! Sets the location and the size of the grid. //! Sets the location and the size of the grid.
//! <XSize> defines the width of the grid. //! <XSize> defines the width of the grid.
//! <YSize> defines the height of the grid. //! <YSize> defines the height of the grid.
//! <OffSet> defines the displacement along the plane normal. //! <OffSet> defines the displacement along the plane normal.
Standard_EXPORT void SetCircularGridGraphicValues (const Standard_Real Radius, const Standard_Real OffSet); Standard_EXPORT void SetCircularGridGraphicValues (const Standard_Real Radius, const Standard_Real OffSet);
//! Returns the location and the size of the grid. //! Returns the location and the size of the grid.
Standard_EXPORT void RectangularGridGraphicValues (Standard_Real& XSize, Standard_Real& YSize, Standard_Real& OffSet) const; Standard_EXPORT void RectangularGridGraphicValues (Standard_Real& theXSize, Standard_Real& theYSize,
Standard_Real& theOffSet);
//! Sets the location and the size of the grid. //! Sets the location and the size of the grid.
//! <XSize> defines the width of the grid. //! <XSize> defines the width of the grid.
//! <YSize> defines the height of the grid. //! <YSize> defines the height of the grid.
@ -411,6 +421,10 @@ public: //! @name grid management
public: //! @name deprecated methods public: //! @name deprecated methods
//! Returns Standard_True if a grid is activated in <me>.
Standard_DEPRECATED ("Deprecated method - IsGridActive() should be used instead")
Standard_Boolean IsActive() { return IsGridActive(); }
//! Initializes an internal iterator on the active views. //! Initializes an internal iterator on the active views.
Standard_DEPRECATED ("Deprecated method - ActiveViews() should be used instead") Standard_DEPRECATED ("Deprecated method - ActiveViews() should be used instead")
void InitActiveViews() { myActiveViewsIterator.Initialize (myActiveViews); } void InitActiveViews() { myActiveViewsIterator.Initialize (myActiveViews); }

View File

@ -33,23 +33,38 @@
// function : Grid // function : Grid
// purpose : // purpose :
// ======================================================================= // =======================================================================
Handle(Aspect_Grid) V3d_Viewer::Grid() const Handle(Aspect_Grid) V3d_Viewer::Grid (Aspect_GridType theGridType, bool theToCreate)
{ {
switch (myGridType) switch (theGridType)
{ {
case Aspect_GT_Circular: return Handle(Aspect_Grid) (myCGrid); case Aspect_GT_Circular:
case Aspect_GT_Rectangular: return Handle(Aspect_Grid) (myRGrid); {
if (myCGrid.IsNull() && theToCreate)
{
myCGrid = new V3d_CircularGrid (this, Quantity_Color(Quantity_NOC_GRAY50), Quantity_Color(Quantity_NOC_GRAY70));
}
return Handle(Aspect_Grid) (myCGrid);
}
case Aspect_GT_Rectangular:
{
if (myRGrid.IsNull() && theToCreate)
{
myRGrid = new V3d_RectangularGrid (this, Quantity_Color(Quantity_NOC_GRAY50), Quantity_Color(Quantity_NOC_GRAY70));
}
return Handle(Aspect_Grid) (myRGrid);
}
} }
return Handle(Aspect_Grid) (myRGrid); return Handle(Aspect_Grid)();
} }
// ======================================================================= // =======================================================================
// function : GridDrawMode // function : GridDrawMode
// purpose : // purpose :
// ======================================================================= // =======================================================================
Aspect_GridDrawMode V3d_Viewer::GridDrawMode() const Aspect_GridDrawMode V3d_Viewer::GridDrawMode()
{ {
return Grid()->DrawMode(); Handle(Aspect_Grid) aGrid = Grid (false);
return !aGrid.IsNull() ? aGrid->DrawMode() : Aspect_GDM_Lines;
} }
// ======================================================================= // =======================================================================
@ -59,17 +74,22 @@ Aspect_GridDrawMode V3d_Viewer::GridDrawMode() const
void V3d_Viewer::ActivateGrid (const Aspect_GridType theType, void V3d_Viewer::ActivateGrid (const Aspect_GridType theType,
const Aspect_GridDrawMode theMode) const Aspect_GridDrawMode theMode)
{ {
Grid()->Erase(); if (Handle(Aspect_Grid) anOldGrid = Grid (false))
{
anOldGrid->Erase();
}
myGridType = theType; myGridType = theType;
Grid()->SetDrawMode (theMode); Handle(Aspect_Grid) aGrid = Grid (true);
aGrid->SetDrawMode (theMode);
if (theMode != Aspect_GDM_None) if (theMode != Aspect_GDM_None)
{ {
Grid()->Display(); aGrid->Display();
} }
Grid()->Activate(); aGrid->Activate();
for (V3d_ListOfView::Iterator anActiveViewIter (myActiveViews); anActiveViewIter.More(); anActiveViewIter.Next()) for (V3d_ListOfView::Iterator anActiveViewIter (myActiveViews); anActiveViewIter.More(); anActiveViewIter.Next())
{ {
anActiveViewIter.Value()->SetGrid (myPrivilegedPlane, Grid()); anActiveViewIter.Value()->SetGrid (myPrivilegedPlane, aGrid);
} }
} }
@ -79,9 +99,16 @@ void V3d_Viewer::ActivateGrid (const Aspect_GridType theType,
// ======================================================================= // =======================================================================
void V3d_Viewer::DeactivateGrid() void V3d_Viewer::DeactivateGrid()
{ {
Grid()->Erase(); Handle(Aspect_Grid) aGrid = Grid (false);
if (aGrid.IsNull())
{
return;
}
aGrid->Erase();
aGrid->Deactivate();
myGridType = Aspect_GT_Rectangular; myGridType = Aspect_GT_Rectangular;
Grid()->Deactivate();
for (V3d_ListOfView::Iterator anActiveViewIter (myActiveViews); anActiveViewIter.More(); anActiveViewIter.Next()) for (V3d_ListOfView::Iterator anActiveViewIter (myActiveViews); anActiveViewIter.More(); anActiveViewIter.Next())
{ {
anActiveViewIter.Value()->SetGridActivity (Standard_False); anActiveViewIter.Value()->SetGridActivity (Standard_False);
@ -94,12 +121,13 @@ void V3d_Viewer::DeactivateGrid()
} }
// ======================================================================= // =======================================================================
// function : IsActive // function : IsGridActive
// purpose : // purpose :
// ======================================================================= // =======================================================================
Standard_Boolean V3d_Viewer::IsActive() const Standard_Boolean V3d_Viewer::IsGridActive()
{ {
return Grid()->IsActive(); Handle(Aspect_Grid) aGrid = Grid (false);
return !aGrid.IsNull() && aGrid->IsActive();
} }
// ======================================================================= // =======================================================================
@ -110,8 +138,9 @@ void V3d_Viewer::RectangularGridValues (Standard_Real& theXOrigin,
Standard_Real& theYOrigin, Standard_Real& theYOrigin,
Standard_Real& theXStep, Standard_Real& theXStep,
Standard_Real& theYStep, Standard_Real& theYStep,
Standard_Real& theRotationAngle) const Standard_Real& theRotationAngle)
{ {
Grid (Aspect_GT_Rectangular, true);
theXOrigin = myRGrid->XOrigin(); theXOrigin = myRGrid->XOrigin();
theYOrigin = myRGrid->YOrigin(); theYOrigin = myRGrid->YOrigin();
theXStep = myRGrid->XStep(); theXStep = myRGrid->XStep();
@ -129,6 +158,7 @@ void V3d_Viewer::SetRectangularGridValues (const Standard_Real theXOrigin,
const Standard_Real theYStep, const Standard_Real theYStep,
const Standard_Real theRotationAngle) const Standard_Real theRotationAngle)
{ {
Grid (Aspect_GT_Rectangular, true);
myRGrid->SetGridValues (theXOrigin, theYOrigin, theXStep, theYStep, theRotationAngle); myRGrid->SetGridValues (theXOrigin, theYOrigin, theXStep, theYStep, theRotationAngle);
for (V3d_ListOfView::Iterator anActiveViewIter (myActiveViews); anActiveViewIter.More(); anActiveViewIter.Next()) for (V3d_ListOfView::Iterator anActiveViewIter (myActiveViews); anActiveViewIter.More(); anActiveViewIter.Next())
{ {
@ -144,8 +174,9 @@ void V3d_Viewer::CircularGridValues (Standard_Real& theXOrigin,
Standard_Real& theYOrigin, Standard_Real& theYOrigin,
Standard_Real& theRadiusStep, Standard_Real& theRadiusStep,
Standard_Integer& theDivisionNumber, Standard_Integer& theDivisionNumber,
Standard_Real& theRotationAngle) const Standard_Real& theRotationAngle)
{ {
Grid (Aspect_GT_Circular, true);
theXOrigin = myCGrid->XOrigin(); theXOrigin = myCGrid->XOrigin();
theYOrigin = myCGrid->YOrigin(); theYOrigin = myCGrid->YOrigin();
theRadiusStep = myCGrid->RadiusStep(); theRadiusStep = myCGrid->RadiusStep();
@ -163,6 +194,7 @@ void V3d_Viewer::SetCircularGridValues (const Standard_Real theXOrigin,
const Standard_Integer theDivisionNumber, const Standard_Integer theDivisionNumber,
const Standard_Real theRotationAngle) const Standard_Real theRotationAngle)
{ {
Grid (Aspect_GT_Circular, true);
myCGrid->SetGridValues (theXOrigin, theYOrigin, theRadiusStep, myCGrid->SetGridValues (theXOrigin, theYOrigin, theRadiusStep,
theDivisionNumber, theRotationAngle); theDivisionNumber, theRotationAngle);
for (V3d_ListOfView::Iterator anActiveViewIter (myActiveViews); anActiveViewIter.More(); anActiveViewIter.Next()) for (V3d_ListOfView::Iterator anActiveViewIter (myActiveViews); anActiveViewIter.More(); anActiveViewIter.Next())
@ -177,8 +209,9 @@ void V3d_Viewer::SetCircularGridValues (const Standard_Real theXOrigin,
// ======================================================================= // =======================================================================
void V3d_Viewer::RectangularGridGraphicValues (Standard_Real& theXSize, void V3d_Viewer::RectangularGridGraphicValues (Standard_Real& theXSize,
Standard_Real& theYSize, Standard_Real& theYSize,
Standard_Real& theOffSet) const Standard_Real& theOffSet)
{ {
Grid (Aspect_GT_Rectangular, true);
myRGrid->GraphicValues (theXSize, theYSize, theOffSet); myRGrid->GraphicValues (theXSize, theYSize, theOffSet);
} }
@ -190,6 +223,7 @@ void V3d_Viewer::SetRectangularGridGraphicValues (const Standard_Real theXSize,
const Standard_Real theYSize, const Standard_Real theYSize,
const Standard_Real theOffSet) const Standard_Real theOffSet)
{ {
Grid (Aspect_GT_Rectangular, true);
myRGrid->SetGraphicValues (theXSize, theYSize, theOffSet); myRGrid->SetGraphicValues (theXSize, theYSize, theOffSet);
} }
@ -198,8 +232,9 @@ void V3d_Viewer::SetRectangularGridGraphicValues (const Standard_Real theXSize,
// purpose : // purpose :
// ======================================================================= // =======================================================================
void V3d_Viewer::CircularGridGraphicValues (Standard_Real& theRadius, void V3d_Viewer::CircularGridGraphicValues (Standard_Real& theRadius,
Standard_Real& theOffSet) const Standard_Real& theOffSet)
{ {
Grid (Aspect_GT_Circular, true);
myCGrid->GraphicValues (theRadius, theOffSet); myCGrid->GraphicValues (theRadius, theOffSet);
} }
@ -210,6 +245,7 @@ void V3d_Viewer::CircularGridGraphicValues (Standard_Real& theRadius,
void V3d_Viewer::SetCircularGridGraphicValues (const Standard_Real theRadius, void V3d_Viewer::SetCircularGridGraphicValues (const Standard_Real theRadius,
const Standard_Real theOffSet) const Standard_Real theOffSet)
{ {
Grid (Aspect_GT_Circular, true);
myCGrid->SetGraphicValues (theRadius, theOffSet); myCGrid->SetGraphicValues (theRadius, theOffSet);
} }

View File

@ -7672,7 +7672,7 @@ static Standard_Integer VMoveTo (Draw_Interpretor& theDI,
return 1; return 1;
} }
const Standard_Boolean toEchoGrid = aContext->CurrentViewer()->Grid()->IsActive() const Standard_Boolean toEchoGrid = aContext->CurrentViewer()->IsGridActive()
&& aContext->CurrentViewer()->GridEcho(); && aContext->CurrentViewer()->GridEcho();
if (toEchoGrid) if (toEchoGrid)
{ {