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

0023318: If statement equal to else statement in AIS_ConcentricRelation.cxx, lines 108-115

Corrected the else-clause.
This commit is contained in:
Pawel 2012-07-18 12:40:06 +02:00 committed by Pawel Kowalski
parent d015d21804
commit 53aa7b3237

View File

@ -110,8 +110,8 @@ void AIS_ConcentricRelation::ComputeEdgeVertexConcentric(const Handle(Prs3d_Pres
V = TopoDS::Vertex(mySShape);
}
else {
E = TopoDS::Edge(myFShape);
V = TopoDS::Vertex(mySShape);
E = TopoDS::Edge(mySShape);
V = TopoDS::Vertex(myFShape);
}
gp_Pnt p1,p2;
Handle(Geom_Curve) C;