mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0027916: Visualization - access violation occurs within AIS_ColoredShape::Compute() for NULL shape
AIS_ColoredShape::Compute() - add NULL shape check. AIS presentations - removed redundant clearance within ::Compute() which is always done in advance within PrsMgr_PresentationManager::Update().
This commit is contained in:
parent
b2bafb33a9
commit
ede89abcb9
@ -594,7 +594,6 @@ void AIS_AngleDimension::Compute (const Handle(PrsMgr_PresentationManager3d)& /*
|
|||||||
const Handle(Prs3d_Presentation)& thePresentation,
|
const Handle(Prs3d_Presentation)& thePresentation,
|
||||||
const Standard_Integer theMode)
|
const Standard_Integer theMode)
|
||||||
{
|
{
|
||||||
thePresentation->Clear();
|
|
||||||
mySelectionGeom.Clear (theMode);
|
mySelectionGeom.Clear (theMode);
|
||||||
|
|
||||||
if (!IsValid())
|
if (!IsValid())
|
||||||
|
@ -169,9 +169,6 @@ void AIS_Axis::Compute(const Handle(PrsMgr_PresentationManager3d)&,
|
|||||||
const Handle(Prs3d_Presentation)& aPresentation,
|
const Handle(Prs3d_Presentation)& aPresentation,
|
||||||
const Standard_Integer)
|
const Standard_Integer)
|
||||||
{
|
{
|
||||||
aPresentation->Clear();
|
|
||||||
|
|
||||||
//Pro.... : pas de prise en compte des axes lors du FITALL (jmi)
|
|
||||||
aPresentation->SetInfiniteState (myInfiniteState);
|
aPresentation->SetInfiniteState (myInfiniteState);
|
||||||
|
|
||||||
aPresentation->SetDisplayPriority(5);
|
aPresentation->SetDisplayPriority(5);
|
||||||
|
@ -104,8 +104,6 @@ void AIS_Chamf2dDimension::Compute(const Handle(PrsMgr_PresentationManager3d)& ,
|
|||||||
const Handle(Prs3d_Presentation)& aPresentation,
|
const Handle(Prs3d_Presentation)& aPresentation,
|
||||||
const Standard_Integer)
|
const Standard_Integer)
|
||||||
{
|
{
|
||||||
aPresentation->Clear();
|
|
||||||
|
|
||||||
Handle(Geom_Curve) gcurv;
|
Handle(Geom_Curve) gcurv;
|
||||||
gp_Pnt pfirst,plast;
|
gp_Pnt pfirst,plast;
|
||||||
const TopoDS_Edge& thechamfedge = TopoDS::Edge(myFShape);
|
const TopoDS_Edge& thechamfedge = TopoDS::Edge(myFShape);
|
||||||
|
@ -99,8 +99,6 @@ void AIS_Chamf3dDimension::Compute(const Handle(PrsMgr_PresentationManager3d)& ,
|
|||||||
const Handle(Prs3d_Presentation)& aPresentation,
|
const Handle(Prs3d_Presentation)& aPresentation,
|
||||||
const Standard_Integer)
|
const Standard_Integer)
|
||||||
{
|
{
|
||||||
aPresentation->Clear();
|
|
||||||
|
|
||||||
//----------------------------
|
//----------------------------
|
||||||
// Calcul du centre de la face
|
// Calcul du centre de la face
|
||||||
//----------------------------
|
//----------------------------
|
||||||
|
@ -78,8 +78,6 @@ void AIS_Circle::Compute(const Handle(PrsMgr_PresentationManager3d)& /*aPresenta
|
|||||||
const Handle(Prs3d_Presentation)& aPresentation,
|
const Handle(Prs3d_Presentation)& aPresentation,
|
||||||
const Standard_Integer /*aMode*/)
|
const Standard_Integer /*aMode*/)
|
||||||
{
|
{
|
||||||
aPresentation->Clear();
|
|
||||||
|
|
||||||
aPresentation->SetDisplayPriority(5);
|
aPresentation->SetDisplayPriority(5);
|
||||||
|
|
||||||
if (myCircleIsArc) ComputeArc(aPresentation);
|
if (myCircleIsArc) ComputeArc(aPresentation);
|
||||||
|
@ -299,7 +299,11 @@ void AIS_ColoredShape::Compute (const Handle(PrsMgr_PresentationManager3d)& ,
|
|||||||
const Handle(Prs3d_Presentation)& thePrs,
|
const Handle(Prs3d_Presentation)& thePrs,
|
||||||
const Standard_Integer theMode)
|
const Standard_Integer theMode)
|
||||||
{
|
{
|
||||||
thePrs->Clear();
|
if (myshape.IsNull())
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (IsInfinite())
|
if (IsInfinite())
|
||||||
{
|
{
|
||||||
thePrs->SetInfiniteState (Standard_True);
|
thePrs->SetInfiniteState (Standard_True);
|
||||||
|
@ -66,8 +66,6 @@ void AIS_ConcentricRelation::Compute(const Handle(PrsMgr_PresentationManager3d)&
|
|||||||
const Handle(Prs3d_Presentation)& aPresentation,
|
const Handle(Prs3d_Presentation)& aPresentation,
|
||||||
const Standard_Integer)
|
const Standard_Integer)
|
||||||
{
|
{
|
||||||
aPresentation->Clear();
|
|
||||||
|
|
||||||
TopAbs_ShapeEnum type2(mySShape.ShapeType());
|
TopAbs_ShapeEnum type2(mySShape.ShapeType());
|
||||||
aPresentation->SetInfiniteState(Standard_True);
|
aPresentation->SetInfiniteState(Standard_True);
|
||||||
switch (myFShape.ShapeType()) {
|
switch (myFShape.ShapeType()) {
|
||||||
|
@ -282,7 +282,6 @@ void AIS_DiameterDimension::Compute (const Handle(PrsMgr_PresentationManager3d)&
|
|||||||
const Handle(Prs3d_Presentation)& thePresentation,
|
const Handle(Prs3d_Presentation)& thePresentation,
|
||||||
const Standard_Integer theMode)
|
const Standard_Integer theMode)
|
||||||
{
|
{
|
||||||
thePresentation->Clear();
|
|
||||||
mySelectionGeom.Clear (theMode);
|
mySelectionGeom.Clear (theMode);
|
||||||
|
|
||||||
if (!IsValid())
|
if (!IsValid())
|
||||||
|
@ -81,9 +81,6 @@ void AIS_EqualDistanceRelation::Compute( const Handle( PrsMgr_PresentationManage
|
|||||||
const Handle( Prs3d_Presentation )& aPresentation,
|
const Handle( Prs3d_Presentation )& aPresentation,
|
||||||
const Standard_Integer )
|
const Standard_Integer )
|
||||||
{
|
{
|
||||||
|
|
||||||
aPresentation->Clear();
|
|
||||||
|
|
||||||
gp_Pnt Position12 = myPosition, Position34 = myPosition;
|
gp_Pnt Position12 = myPosition, Position34 = myPosition;
|
||||||
|
|
||||||
Handle(Prs3d_DimensionAspect) la = myDrawer->DimensionAspect();
|
Handle(Prs3d_DimensionAspect) la = myDrawer->DimensionAspect();
|
||||||
|
@ -65,8 +65,6 @@ void AIS_EqualRadiusRelation::Compute( const Handle( PrsMgr_PresentationManager3
|
|||||||
const Handle( Prs3d_Presentation )& aPresentation,
|
const Handle( Prs3d_Presentation )& aPresentation,
|
||||||
const Standard_Integer )
|
const Standard_Integer )
|
||||||
{
|
{
|
||||||
aPresentation->Clear();
|
|
||||||
|
|
||||||
BRepAdaptor_Curve FirstCurve( TopoDS::Edge( myFShape ) ), SecondCurve( TopoDS::Edge( mySShape ) );
|
BRepAdaptor_Curve FirstCurve( TopoDS::Edge( myFShape ) ), SecondCurve( TopoDS::Edge( mySShape ) );
|
||||||
|
|
||||||
Standard_Real FirstPar1 = FirstCurve.FirstParameter(), LastPar1 = FirstCurve.LastParameter(),
|
Standard_Real FirstPar1 = FirstCurve.FirstParameter(), LastPar1 = FirstCurve.LastParameter(),
|
||||||
|
@ -171,8 +171,6 @@ void AIS_FixRelation::Compute(const Handle(PrsMgr_PresentationManager3d)&,
|
|||||||
const Handle(Prs3d_Presentation)& aPresentation,
|
const Handle(Prs3d_Presentation)& aPresentation,
|
||||||
const Standard_Integer)
|
const Standard_Integer)
|
||||||
{
|
{
|
||||||
aPresentation->Clear();
|
|
||||||
|
|
||||||
// Calculate position of the symbol and
|
// Calculate position of the symbol and
|
||||||
// point of attach of the segment on the shape
|
// point of attach of the segment on the shape
|
||||||
gp_Pnt curpos;
|
gp_Pnt curpos;
|
||||||
|
@ -309,8 +309,6 @@ void AIS_IdenticRelation::Compute(const Handle(PrsMgr_PresentationManager3d)&,
|
|||||||
const Handle(Prs3d_Presentation)& aprs,
|
const Handle(Prs3d_Presentation)& aprs,
|
||||||
const Standard_Integer)
|
const Standard_Integer)
|
||||||
{
|
{
|
||||||
aprs->Clear();
|
|
||||||
|
|
||||||
switch ( myFShape.ShapeType() ) {
|
switch ( myFShape.ShapeType() ) {
|
||||||
|
|
||||||
case TopAbs_VERTEX:
|
case TopAbs_VERTEX:
|
||||||
|
@ -272,7 +272,6 @@ void AIS_LengthDimension::Compute (const Handle(PrsMgr_PresentationManager3d)& /
|
|||||||
const Handle(Prs3d_Presentation)& thePresentation,
|
const Handle(Prs3d_Presentation)& thePresentation,
|
||||||
const Standard_Integer theMode)
|
const Standard_Integer theMode)
|
||||||
{
|
{
|
||||||
thePresentation->Clear();
|
|
||||||
mySelectionGeom.Clear (theMode);
|
mySelectionGeom.Clear (theMode);
|
||||||
|
|
||||||
if (!IsValid())
|
if (!IsValid())
|
||||||
|
@ -117,8 +117,6 @@ void AIS_Line::Compute(const Handle(PrsMgr_PresentationManager3d)&,
|
|||||||
const Handle(Prs3d_Presentation)& aPresentation,
|
const Handle(Prs3d_Presentation)& aPresentation,
|
||||||
const Standard_Integer)
|
const Standard_Integer)
|
||||||
{
|
{
|
||||||
aPresentation->Clear();
|
|
||||||
|
|
||||||
aPresentation->SetDisplayPriority(5);
|
aPresentation->SetDisplayPriority(5);
|
||||||
|
|
||||||
if (!myLineIsSegment) ComputeInfiniteLine(aPresentation);
|
if (!myLineIsSegment) ComputeInfiniteLine(aPresentation);
|
||||||
|
@ -104,8 +104,6 @@ void AIS_MaxRadiusDimension::Compute(const Handle(PrsMgr_PresentationManager3d)&
|
|||||||
const Handle(Prs3d_Presentation)& aPresentation,
|
const Handle(Prs3d_Presentation)& aPresentation,
|
||||||
const Standard_Integer /*aMode*/)
|
const Standard_Integer /*aMode*/)
|
||||||
{
|
{
|
||||||
aPresentation->Clear();
|
|
||||||
|
|
||||||
// if( myAutomaticPosition )
|
// if( myAutomaticPosition )
|
||||||
{//ota : recompute in any case
|
{//ota : recompute in any case
|
||||||
ComputeGeometry();
|
ComputeGeometry();
|
||||||
|
@ -80,8 +80,6 @@ void AIS_MidPointRelation::Compute(const Handle(PrsMgr_PresentationManager3d)&,
|
|||||||
const Handle(Prs3d_Presentation)& aprs,
|
const Handle(Prs3d_Presentation)& aprs,
|
||||||
const Standard_Integer)
|
const Standard_Integer)
|
||||||
{
|
{
|
||||||
aprs->Clear();
|
|
||||||
|
|
||||||
if (myTool.ShapeType() == TopAbs_VERTEX)
|
if (myTool.ShapeType() == TopAbs_VERTEX)
|
||||||
{
|
{
|
||||||
gp_Pnt pp;
|
gp_Pnt pp;
|
||||||
|
@ -104,8 +104,6 @@ void AIS_MinRadiusDimension::Compute(const Handle(PrsMgr_PresentationManager3d)&
|
|||||||
const Handle(Prs3d_Presentation)& aPresentation,
|
const Handle(Prs3d_Presentation)& aPresentation,
|
||||||
const Standard_Integer /*aMode*/)
|
const Standard_Integer /*aMode*/)
|
||||||
{
|
{
|
||||||
aPresentation->Clear();
|
|
||||||
|
|
||||||
// if( myAutomaticPosition )
|
// if( myAutomaticPosition )
|
||||||
//{ //ota : recompute ellipse always
|
//{ //ota : recompute ellipse always
|
||||||
ComputeGeometry();
|
ComputeGeometry();
|
||||||
|
@ -90,10 +90,6 @@ void AIS_OffsetDimension::Compute(const Handle(PrsMgr_PresentationManager3d)&,
|
|||||||
const Handle(Prs3d_Presentation)& aprs,
|
const Handle(Prs3d_Presentation)& aprs,
|
||||||
const Standard_Integer)
|
const Standard_Integer)
|
||||||
{
|
{
|
||||||
aprs->Clear();
|
|
||||||
|
|
||||||
//cout << endl << "This is strange Offset Dimension!" << endl;
|
|
||||||
|
|
||||||
gp_Trsf aInvertTrsf = myRelativePos;
|
gp_Trsf aInvertTrsf = myRelativePos;
|
||||||
//myArrowSize = fabs (myVal/5.);
|
//myArrowSize = fabs (myVal/5.);
|
||||||
myArrowSize = fabs (myVal/10.0);
|
myArrowSize = fabs (myVal/10.0);
|
||||||
|
@ -98,8 +98,6 @@ void AIS_ParallelRelation::Compute(const Handle(PrsMgr_PresentationManager3d)&,
|
|||||||
const Handle(Prs3d_Presentation)& aPresentation,
|
const Handle(Prs3d_Presentation)& aPresentation,
|
||||||
const Standard_Integer)
|
const Standard_Integer)
|
||||||
{
|
{
|
||||||
aPresentation->Clear();
|
|
||||||
|
|
||||||
switch (myFShape.ShapeType())
|
switch (myFShape.ShapeType())
|
||||||
{
|
{
|
||||||
case TopAbs_FACE :
|
case TopAbs_FACE :
|
||||||
|
@ -86,8 +86,6 @@ void AIS_PerpendicularRelation::Compute(const Handle(PrsMgr_PresentationManager3
|
|||||||
const Handle(Prs3d_Presentation)& aPresentation,
|
const Handle(Prs3d_Presentation)& aPresentation,
|
||||||
const Standard_Integer)
|
const Standard_Integer)
|
||||||
{
|
{
|
||||||
aPresentation->Clear();
|
|
||||||
|
|
||||||
if (myFShape.ShapeType() == mySShape.ShapeType()) {
|
if (myFShape.ShapeType() == mySShape.ShapeType()) {
|
||||||
switch (myFShape.ShapeType()) {
|
switch (myFShape.ShapeType()) {
|
||||||
case TopAbs_FACE :
|
case TopAbs_FACE :
|
||||||
|
@ -238,8 +238,6 @@ void AIS_Plane::Compute(const Handle(PrsMgr_PresentationManager3d)& ,
|
|||||||
const Handle(Prs3d_Presentation)& aPresentation,
|
const Handle(Prs3d_Presentation)& aPresentation,
|
||||||
const Standard_Integer aMode)
|
const Standard_Integer aMode)
|
||||||
{
|
{
|
||||||
aPresentation->Clear();
|
|
||||||
|
|
||||||
ComputeFields();
|
ComputeFields();
|
||||||
aPresentation->SetInfiniteState(myInfiniteState);
|
aPresentation->SetInfiniteState(myInfiniteState);
|
||||||
myDrawer->PlaneAspect()->EdgesAspect()->SetWidth(myCurrentMode == 0? 1 : 3);
|
myDrawer->PlaneAspect()->EdgesAspect()->SetWidth(myCurrentMode == 0? 1 : 3);
|
||||||
|
@ -157,7 +157,6 @@ void AIS_PlaneTrihedron::Compute(const Handle(PrsMgr_PresentationManager3d)&,
|
|||||||
const Handle(Prs3d_Presentation)& aPresentation,
|
const Handle(Prs3d_Presentation)& aPresentation,
|
||||||
const Standard_Integer)
|
const Standard_Integer)
|
||||||
{
|
{
|
||||||
aPresentation->Clear();
|
|
||||||
aPresentation->SetDisplayPriority(5);
|
aPresentation->SetDisplayPriority(5);
|
||||||
// drawing axis in X direction
|
// drawing axis in X direction
|
||||||
gp_Pnt first, last;
|
gp_Pnt first, last;
|
||||||
|
@ -79,8 +79,6 @@ void AIS_Point::Compute(const Handle(PrsMgr_PresentationManager3d)& /*aPresentat
|
|||||||
const Handle(Prs3d_Presentation)& aPresentation,
|
const Handle(Prs3d_Presentation)& aPresentation,
|
||||||
const Standard_Integer aMode)
|
const Standard_Integer aMode)
|
||||||
{
|
{
|
||||||
aPresentation->Clear();
|
|
||||||
|
|
||||||
aPresentation->SetInfiniteState(myInfiniteState);
|
aPresentation->SetInfiniteState(myInfiniteState);
|
||||||
|
|
||||||
if (aMode==0)
|
if (aMode==0)
|
||||||
|
@ -409,7 +409,6 @@ void AIS_PointCloud::Compute (const Handle(PrsMgr_PresentationManager3d)& /*theP
|
|||||||
const Handle(Prs3d_Presentation)& thePrs,
|
const Handle(Prs3d_Presentation)& thePrs,
|
||||||
const Standard_Integer theMode)
|
const Standard_Integer theMode)
|
||||||
{
|
{
|
||||||
thePrs->Clear();
|
|
||||||
switch (theMode)
|
switch (theMode)
|
||||||
{
|
{
|
||||||
case AIS_PointCloud::DM_Points:
|
case AIS_PointCloud::DM_Points:
|
||||||
|
@ -222,7 +222,6 @@ void AIS_RadiusDimension::Compute (const Handle(PrsMgr_PresentationManager3d)& /
|
|||||||
const Handle(Prs3d_Presentation)& thePresentation,
|
const Handle(Prs3d_Presentation)& thePresentation,
|
||||||
const Standard_Integer theMode)
|
const Standard_Integer theMode)
|
||||||
{
|
{
|
||||||
thePresentation->Clear();
|
|
||||||
mySelectionGeom.Clear (theMode);
|
mySelectionGeom.Clear (theMode);
|
||||||
|
|
||||||
if (!IsValid())
|
if (!IsValid())
|
||||||
|
@ -123,7 +123,6 @@ void AIS_Shape::Compute(const Handle(PrsMgr_PresentationManager3d)& /*aPresentat
|
|||||||
const Handle(Prs3d_Presentation)& aPrs,
|
const Handle(Prs3d_Presentation)& aPrs,
|
||||||
const Standard_Integer theMode)
|
const Standard_Integer theMode)
|
||||||
{
|
{
|
||||||
aPrs->Clear();
|
|
||||||
if(myshape.IsNull()) return;
|
if(myshape.IsNull()) return;
|
||||||
|
|
||||||
// wire,edge,vertex -> pas de HLR + priorite display superieure
|
// wire,edge,vertex -> pas de HLR + priorite display superieure
|
||||||
|
@ -77,8 +77,6 @@ void AIS_SymmetricRelation::Compute(const Handle(PrsMgr_PresentationManager3d)&,
|
|||||||
const Handle(Prs3d_Presentation)& aprs,
|
const Handle(Prs3d_Presentation)& aprs,
|
||||||
const Standard_Integer)
|
const Standard_Integer)
|
||||||
{
|
{
|
||||||
aprs->Clear();
|
|
||||||
|
|
||||||
switch (myFShape.ShapeType()) {
|
switch (myFShape.ShapeType()) {
|
||||||
case TopAbs_FACE :
|
case TopAbs_FACE :
|
||||||
{
|
{
|
||||||
|
@ -96,8 +96,6 @@ void AIS_TangentRelation::Compute(const Handle(PrsMgr_PresentationManager3d)&,
|
|||||||
const Handle(Prs3d_Presentation)& aPresentation,
|
const Handle(Prs3d_Presentation)& aPresentation,
|
||||||
const Standard_Integer)
|
const Standard_Integer)
|
||||||
{
|
{
|
||||||
aPresentation->Clear();
|
|
||||||
|
|
||||||
switch (myFShape.ShapeType())
|
switch (myFShape.ShapeType())
|
||||||
{
|
{
|
||||||
case TopAbs_FACE :
|
case TopAbs_FACE :
|
||||||
|
@ -397,8 +397,6 @@ void AIS_TexturedShape::Compute (const Handle(PrsMgr_PresentationManager3d)& /*t
|
|||||||
const Handle(Prs3d_Presentation)& thePrs,
|
const Handle(Prs3d_Presentation)& thePrs,
|
||||||
const Standard_Integer theMode)
|
const Standard_Integer theMode)
|
||||||
{
|
{
|
||||||
thePrs->Clear();
|
|
||||||
|
|
||||||
if (myshape.IsNull())
|
if (myshape.IsNull())
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
|
@ -276,8 +276,6 @@ void AIS_Trihedron::Compute(
|
|||||||
const Handle(Prs3d_Presentation)& aPresentation,
|
const Handle(Prs3d_Presentation)& aPresentation,
|
||||||
const Standard_Integer aMode)
|
const Standard_Integer aMode)
|
||||||
{
|
{
|
||||||
aPresentation->Clear();
|
|
||||||
|
|
||||||
aPresentation->SetInfiniteState (Standard_True);
|
aPresentation->SetInfiniteState (Standard_True);
|
||||||
switch(aMode){
|
switch(aMode){
|
||||||
case 0:
|
case 0:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user