4x & 5x: Error at Measures - Dimensions - Angle with edge selection

This commit is contained in:
dmv 2008-10-15 13:45:58 +00:00
parent f51c178d7d
commit 9676046936

View File

@ -1767,7 +1767,8 @@ Standard_Real GEOMImpl_IMeasureOperations::GetAngle (Handle(GEOM_Object) theLine
Handle(Geom_Curve) C1 = BRep_Tool::Curve(E1,fp,lp);
Handle(Geom_Curve) C2 = BRep_Tool::Curve(E2,fp,lp);
if (!C1->IsKind(STANDARD_TYPE(Geom_Line)) ||
if ( C1.IsNull() || C2.IsNull() ||
!C1->IsKind(STANDARD_TYPE(Geom_Line)) ||
!C2->IsKind(STANDARD_TYPE(Geom_Line)))
{
SetErrorCode("The edges must be linear");