mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0029491: Visualization, AIS_Shape - filter unsupported Display Modes within ::AcceptDisplayMode()
AIS_Shape::AcceptDisplayMode() now accepts only modes 0,1 and 2. AIS_ColoredShape::Compute() no more computes presentation for unknown display mode.
This commit is contained in:
parent
8a7476a622
commit
f8e0c6c48a
@ -345,7 +345,7 @@ void AIS_ColoredShape::SetMaterial (const Graphic3d_MaterialAspect& theMaterial)
|
|||||||
//function : Compute
|
//function : Compute
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
void AIS_ColoredShape::Compute (const Handle(PrsMgr_PresentationManager3d)& ,
|
void AIS_ColoredShape::Compute (const Handle(PrsMgr_PresentationManager3d)& thePrsMgr,
|
||||||
const Handle(Prs3d_Presentation)& thePrs,
|
const Handle(Prs3d_Presentation)& thePrs,
|
||||||
const Standard_Integer theMode)
|
const Standard_Integer theMode)
|
||||||
{
|
{
|
||||||
@ -359,31 +359,45 @@ void AIS_ColoredShape::Compute (const Handle(PrsMgr_PresentationManager3d)& ,
|
|||||||
thePrs->SetInfiniteState (Standard_True);
|
thePrs->SetInfiniteState (Standard_True);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (theMode == AIS_Shaded)
|
switch (theMode)
|
||||||
{
|
{
|
||||||
if (myDrawer->IsAutoTriangulation())
|
case AIS_WireFrame:
|
||||||
{
|
{
|
||||||
// compute mesh for entire shape beforehand to ensure consistency and optimizations (parallelization)
|
|
||||||
StdPrs_ToolTriangulatedShape::ClearOnOwnDeflectionChange (myshape, myDrawer, Standard_True);
|
StdPrs_ToolTriangulatedShape::ClearOnOwnDeflectionChange (myshape, myDrawer, Standard_True);
|
||||||
|
|
||||||
// After this call if type of deflection is relative
|
// After this call if type of deflection is relative
|
||||||
// computed deflection coefficient is stored as absolute.
|
// computed deflection coefficient is stored as absolute.
|
||||||
Standard_Boolean wasRecomputed = StdPrs_ToolTriangulatedShape::Tessellate (myshape, myDrawer);
|
Prs3d::GetDeflection (myshape, myDrawer);
|
||||||
|
break;
|
||||||
// Set to update wireframe presentation on triangulation.
|
|
||||||
if (myDrawer->IsoOnTriangulation() && wasRecomputed)
|
|
||||||
{
|
|
||||||
SetToUpdate (AIS_WireFrame);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
case AIS_Shaded:
|
||||||
else // WireFrame mode
|
{
|
||||||
{
|
if (myDrawer->IsAutoTriangulation())
|
||||||
StdPrs_ToolTriangulatedShape::ClearOnOwnDeflectionChange (myshape, myDrawer, Standard_True);
|
{
|
||||||
|
// compute mesh for entire shape beforehand to ensure consistency and optimizations (parallelization)
|
||||||
|
StdPrs_ToolTriangulatedShape::ClearOnOwnDeflectionChange (myshape, myDrawer, Standard_True);
|
||||||
|
|
||||||
// After this call if type of deflection is relative
|
// After this call if type of deflection is relative
|
||||||
// computed deflection coefficient is stored as absolute.
|
// computed deflection coefficient is stored as absolute.
|
||||||
Prs3d::GetDeflection (myshape, myDrawer);
|
Standard_Boolean wasRecomputed = StdPrs_ToolTriangulatedShape::Tessellate (myshape, myDrawer);
|
||||||
|
|
||||||
|
// Set to update wireframe presentation on triangulation.
|
||||||
|
if (myDrawer->IsoOnTriangulation() && wasRecomputed)
|
||||||
|
{
|
||||||
|
SetToUpdate (AIS_WireFrame);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 2:
|
||||||
|
{
|
||||||
|
AIS_Shape::Compute (thePrsMgr, thePrs, theMode);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Extract myShapeColors map (KeyshapeColored -> Color) to subshapes map (Subshape -> Color).
|
// Extract myShapeColors map (KeyshapeColored -> Color) to subshapes map (Subshape -> Color).
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
#include <AIS_GraphicTool.hxx>
|
#include <AIS_GraphicTool.hxx>
|
||||||
#include <AIS_InteractiveContext.hxx>
|
#include <AIS_InteractiveContext.hxx>
|
||||||
#include <Aspect_TypeOfLine.hxx>
|
#include <Aspect_TypeOfLine.hxx>
|
||||||
#include <Bnd_Box.hxx>
|
|
||||||
#include <BRep_Builder.hxx>
|
#include <BRep_Builder.hxx>
|
||||||
#include <BRepBndLib.hxx>
|
#include <BRepBndLib.hxx>
|
||||||
#include <BRepTools.hxx>
|
#include <BRepTools.hxx>
|
||||||
@ -68,7 +67,6 @@
|
|||||||
#include <TopExp.hxx>
|
#include <TopExp.hxx>
|
||||||
#include <TopExp_Explorer.hxx>
|
#include <TopExp_Explorer.hxx>
|
||||||
#include <TopoDS_Iterator.hxx>
|
#include <TopoDS_Iterator.hxx>
|
||||||
#include <TopoDS_Shape.hxx>
|
|
||||||
|
|
||||||
IMPLEMENT_STANDARD_RTTIEXT(AIS_Shape,AIS_InteractiveObject)
|
IMPLEMENT_STANDARD_RTTIEXT(AIS_Shape,AIS_InteractiveObject)
|
||||||
|
|
||||||
@ -97,28 +95,6 @@ AIS_Shape::AIS_Shape(const TopoDS_Shape& theShape)
|
|||||||
//
|
//
|
||||||
}
|
}
|
||||||
|
|
||||||
//=======================================================================
|
|
||||||
//function : Type
|
|
||||||
//purpose :
|
|
||||||
//=======================================================================
|
|
||||||
AIS_KindOfInteractive AIS_Shape::Type() const
|
|
||||||
{return AIS_KOI_Shape;}
|
|
||||||
|
|
||||||
|
|
||||||
//=======================================================================
|
|
||||||
//function : Signature
|
|
||||||
//purpose :
|
|
||||||
//=======================================================================
|
|
||||||
Standard_Integer AIS_Shape::Signature() const
|
|
||||||
{return 0;}
|
|
||||||
|
|
||||||
//=======================================================================
|
|
||||||
//function : AcceptShapeDecomposition
|
|
||||||
//purpose :
|
|
||||||
//=======================================================================
|
|
||||||
Standard_Boolean AIS_Shape::AcceptShapeDecomposition() const
|
|
||||||
{return Standard_True;}
|
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : Compute
|
//function : Compute
|
||||||
//purpose :
|
//purpose :
|
||||||
|
@ -19,14 +19,10 @@
|
|||||||
|
|
||||||
#include <AIS_InteractiveObject.hxx>
|
#include <AIS_InteractiveObject.hxx>
|
||||||
#include <Bnd_Box.hxx>
|
#include <Bnd_Box.hxx>
|
||||||
#include <TopAbs_ShapeEnum.hxx>
|
|
||||||
#include <TopoDS_Shape.hxx>
|
#include <TopoDS_Shape.hxx>
|
||||||
#include <Prs3d_Drawer.hxx>
|
#include <Prs3d_Drawer.hxx>
|
||||||
#include <Prs3d_TypeOfHLR.hxx>
|
#include <Prs3d_TypeOfHLR.hxx>
|
||||||
|
|
||||||
class TopoDS_Shape;
|
|
||||||
class Bnd_Box;
|
|
||||||
|
|
||||||
//! A framework to manage presentation and selection of shapes.
|
//! A framework to manage presentation and selection of shapes.
|
||||||
//! AIS_Shape is the interactive object which is used the
|
//! AIS_Shape is the interactive object which is used the
|
||||||
//! most by applications. There are standard functions
|
//! most by applications. There are standard functions
|
||||||
@ -70,23 +66,29 @@ public:
|
|||||||
Standard_EXPORT AIS_Shape(const TopoDS_Shape& shap);
|
Standard_EXPORT AIS_Shape(const TopoDS_Shape& shap);
|
||||||
|
|
||||||
//! Returns index 0. This value refers to SHAPE from TopAbs_ShapeEnum
|
//! Returns index 0. This value refers to SHAPE from TopAbs_ShapeEnum
|
||||||
Standard_EXPORT virtual Standard_Integer Signature() const Standard_OVERRIDE;
|
virtual Standard_Integer Signature() const Standard_OVERRIDE { return 0; }
|
||||||
|
|
||||||
//! Returns Object as the type of Interactive Object.
|
//! Returns Object as the type of Interactive Object.
|
||||||
Standard_EXPORT virtual AIS_KindOfInteractive Type() const Standard_OVERRIDE;
|
virtual AIS_KindOfInteractive Type() const Standard_OVERRIDE { return AIS_KOI_Shape; }
|
||||||
|
|
||||||
//! Returns true if the Interactive Object accepts shape decomposition.
|
//! Returns true if the Interactive Object accepts shape decomposition.
|
||||||
Standard_EXPORT virtual Standard_Boolean AcceptShapeDecomposition() const Standard_OVERRIDE;
|
virtual Standard_Boolean AcceptShapeDecomposition() const Standard_OVERRIDE { return Standard_True; }
|
||||||
|
|
||||||
|
//! Return true if specified display mode is supported.
|
||||||
|
virtual Standard_Boolean AcceptDisplayMode (const Standard_Integer theMode) const Standard_OVERRIDE { return theMode >= 0 && theMode <= 2; }
|
||||||
|
|
||||||
|
//! Returns this shape object.
|
||||||
|
const TopoDS_Shape& Shape() const { return myshape; }
|
||||||
|
|
||||||
//! Constructs an instance of the shape object theShape.
|
//! Constructs an instance of the shape object theShape.
|
||||||
void Set (const TopoDS_Shape& theShape)
|
void SetShape (const TopoDS_Shape& theShape)
|
||||||
{
|
{
|
||||||
myshape = theShape;
|
myshape = theShape;
|
||||||
myCompBB = Standard_True;
|
myCompBB = Standard_True;
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Returns this shape object.
|
//! Alias for ::SetShape().
|
||||||
const TopoDS_Shape& Shape() const { return myshape; }
|
void Set (const TopoDS_Shape& theShape) { SetShape (theShape); }
|
||||||
|
|
||||||
//! Sets a local value for deviation coefficient for this specific shape.
|
//! Sets a local value for deviation coefficient for this specific shape.
|
||||||
Standard_EXPORT Standard_Boolean SetOwnDeviationCoefficient();
|
Standard_EXPORT Standard_Boolean SetOwnDeviationCoefficient();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user