mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
0030146: Visualization - exception during attempt to display Edge without geometry
StdPrs_ToolRFace no skips curves with NULL curves. Code has been cleaned up from duplicated checks, redundant casts and dummy Adaptor2d_Curve2dPtr typedef. StdSelect_BRepSelectionTool::GetSensitiveForFace() now catches Standard_NullObject exception to skip invalid Edges.
This commit is contained in:
@@ -124,6 +124,19 @@ GeomAbs_Shape GeomAdaptor_Curve::LocalContinuity(const Standard_Real U1,
|
||||
}
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : Reset
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
void GeomAdaptor_Curve::Reset()
|
||||
{
|
||||
myTypeCurve = GeomAbs_OtherCurve;
|
||||
myCurve.Nullify();
|
||||
myNestedEvaluator.Nullify();
|
||||
myBSplineCurve.Nullify();
|
||||
myCurveCache.Nullify();
|
||||
myFirst = myLast = 0.0;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : Load
|
||||
|
@@ -70,7 +70,10 @@ public:
|
||||
|
||||
//! ConstructionError is raised if Ufirst>Ulast
|
||||
GeomAdaptor_Curve(const Handle(Geom_Curve)& C, const Standard_Real UFirst, const Standard_Real ULast);
|
||||
|
||||
|
||||
//! Reset currently loaded curve (undone Load()).
|
||||
Standard_EXPORT void Reset();
|
||||
|
||||
void Load (const Handle(Geom_Curve)& C);
|
||||
|
||||
//! ConstructionError is raised if Ufirst>Ulast
|
||||
|
Reference in New Issue
Block a user