projects
/
occt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d015d21
)
0023318: If statement equal to else statement in AIS_ConcentricRelation.cxx, lines...
author
Pawel
<pawel-kowalski@wp.pl>
Wed, 18 Jul 2012 10:40:06 +0000
(12:40 +0200)
committer
Pawel Kowalski
<pawel-kowalski@wp.pl>
Fri, 27 Jul 2012 11:05:38 +0000
(15:05 +0400)
Corrected the else-clause.
src/AIS/AIS_ConcentricRelation.cxx
patch
|
blob
|
blame
|
history
diff --git
a/src/AIS/AIS_ConcentricRelation.cxx
b/src/AIS/AIS_ConcentricRelation.cxx
index 4188fe062dbecaae2ae5a0764088dd74528469c2..78a29adb5a4cc3e90ad78d9eb1dd2256c69cecca 100755
(executable)
--- a/
src/AIS/AIS_ConcentricRelation.cxx
+++ b/
src/AIS/AIS_ConcentricRelation.cxx
@@
-110,8
+110,8
@@
void AIS_ConcentricRelation::ComputeEdgeVertexConcentric(const Handle(Prs3d_Pres
V = TopoDS::Vertex(mySShape);
}
else {
- E = TopoDS::Edge(my
F
Shape);
- V = TopoDS::Vertex(my
S
Shape);
+ E = TopoDS::Edge(my
S
Shape);
+ V = TopoDS::Vertex(my
F
Shape);
}
gp_Pnt p1,p2;
Handle(Geom_Curve) C;