Salome HOME
Fix compilation error (conflict of OK name between OCCT Plate_Plate.hxx and GEOM...
[modules/geom.git] / MeasureGUI / MeasureGUI_DimensionCreateTool.cxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File   : MeasureGUI_DimensionCreateTool.cxx
25 // Author : Anton POLETAEV, Open CASCADE S.A.S.
26
27 #include "MeasureGUI_DimensionCreateTool.h"
28
29 // GEOM includes
30 #include <GEOMBase.h>
31
32 // GUI includes
33 #include <SalomeApp_Application.h>
34
35 // SUIT includes
36 #include <OCCViewer_ViewModel.h>
37 #include <OCCViewer_ViewManager.h>
38 #include <OCCViewer_ViewWindow.h>
39 #include <OCCViewer_ViewPort3d.h>
40
41 // OCCT includes
42 #include <Adaptor3d_CurveOnSurface.hxx>
43 #include <BRep_Tool.hxx>
44 #include <BRepTools.hxx>
45 #include <BRepAdaptor_Curve.hxx>
46 #include <BRepAdaptor_Surface.hxx>
47 #include <BRepBndLib.hxx>
48 #include <ElCLib.hxx>
49 #include <gp_Pnt.hxx>
50 #include <gp_Circ.hxx>
51 #include <gp_Sphere.hxx>
52 #include <gp_Cone.hxx>
53 #include <gp_Torus.hxx>
54 #include <gce_MakeDir.hxx>
55 #include <gce_MakePln.hxx>
56 #include <gce_MakeCirc.hxx>
57 #include <GC_MakePlane.hxx>
58 #include <Geom_Circle.hxx>
59 #include <Geom_Plane.hxx>
60 #include <Geom_ElementarySurface.hxx>
61 #include <Geom_Surface.hxx>
62 #include <Geom_ConicalSurface.hxx>
63 #include <Geom_SphericalSurface.hxx>
64 #include <Geom_ToroidalSurface.hxx>
65 #include <Geom_TrimmedCurve.hxx>
66 #include <GeomLib.hxx>
67 #include <GeomLib_Tool.hxx>
68 #include <TopoDS_Shape.hxx>
69 #include <TopoDS_Vertex.hxx>
70 #include <TopoDS_Edge.hxx>
71 #include <TopExp.hxx>
72 #include <TopExp_Explorer.hxx>
73 #include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
74 #include <TopTools_ListOfShape.hxx>
75 #include <TopTools_ListIteratorOfListOfShape.hxx>
76 #include <TColgp_SequenceOfDir.hxx>
77 #include <V3d_View.hxx>
78
79
80 // plane associated with custom data
81 struct PlaneAndSegment
82 {
83   PlaneAndSegment() {}
84   PlaneAndSegment(const gp_Pln& thePlane, const MeasureGUI_DimensionCreateTool::Segment& theSegment) : pln(thePlane), seg(theSegment) {}
85   operator gp_Pln () const { return pln; }
86   operator MeasureGUI_DimensionCreateTool::Segment () const { return seg; }
87   gp_Pln pln;
88   MeasureGUI_DimensionCreateTool::Segment seg;
89 };
90
91 typedef NCollection_Sequence<PlaneAndSegment> SeqOfPlnsAndSegments;
92
93 //=================================================================================
94 // function : Constructor
95 // purpose  :
96 //=================================================================================
97 MeasureGUI_DimensionCreateTool::MeasureGUI_DimensionCreateTool()
98 {
99   Settings.DefaultFlyout = 0.0;
100   Settings.ActiveView = NULL;
101 }
102
103 //=================================================================================
104 // function : LengthOnEdge
105 // purpose  :
106 //=================================================================================
107 Handle(AIS_LengthDimension) MeasureGUI_DimensionCreateTool::LengthOnEdge( const GEOM::GeomObjPtr& theMeasuredObj ) const
108 {
109   /* ---------------------------------------------------------------- *
110    *                  get the edge and parent shape                   *
111    * ---------------------------------------------------------------- */
112
113   TopoDS_Shape aMeasuredShape;
114   TopoDS_Shape aMainShape;
115   if ( !GEOMBase::GetShape( theMeasuredObj.operator ->(), aMeasuredShape ) )
116   {
117     return NULL;
118   }
119
120   if ( !GEOMBase::GetShape( GetMainShape( theMeasuredObj ).get(), aMainShape ) )
121   {
122     return NULL;
123   }
124
125   /* ------------------------------------------------- */
126   /*            check the input geometry               */
127   /* ------------------------------------------------- */
128
129   TopoDS_Edge anEdge = TopoDS::Edge( aMeasuredShape );
130
131   TopoDS_Vertex aVertex1;
132   TopoDS_Vertex aVertex2;
133   TopExp::Vertices( anEdge, aVertex1, aVertex2 );
134
135   gp_Pnt aPnt1 = BRep_Tool::Pnt( aVertex1 );
136   gp_Pnt aPnt2 = BRep_Tool::Pnt( aVertex2 );
137   if ( aPnt1.Distance( aPnt2 ) <= Precision::Confusion() )
138   {
139     return NULL;
140   }
141
142   /* ------------------------- *
143    *   position the dimension 
144    * ------------------------- */
145
146   Bnd_Box aBnd;
147   BRepBndLib::AddClose( aMainShape, aBnd );
148
149   // get face sides
150   TopTools_IndexedDataMapOfShapeListOfShape aRelationMap;
151   TopExp::MapShapesAndAncestors( aMainShape, TopAbs_EDGE, TopAbs_FACE, aRelationMap );
152   const TopTools_ListOfShape& aRelatedFaces = aRelationMap.FindFromKey( anEdge );
153
154   gp_Vec aFaceN1( gp::Origin(), gp::Origin() );
155   gp_Vec aFaceN2( gp::Origin(), gp::Origin() );
156   gp_Vec aFaceS1( gp::Origin(), gp::Origin() );
157   gp_Vec aFaceS2( gp::Origin(), gp::Origin() );
158
159   gp_Pnt aMiddlePnt = gp_Pnt( ( aPnt1.XYZ() + aPnt2.XYZ() ) * 0.5 );
160
161   TopTools_ListIteratorOfListOfShape aFaceIt( aRelatedFaces );
162
163   // get face side directions
164   if ( aFaceIt.More() )
165   {
166     TopoDS_Face aFace = TopoDS::Face( aFaceIt.Value() );
167
168     gp_Dir aSideDir;
169     if ( GetFaceSide( aFace, anEdge, aSideDir ) )
170     {
171       aFaceS1 = aSideDir;
172     }
173
174     Handle(Geom_Surface) aSurface = BRep_Tool::Surface( aFace );
175
176     Standard_Real aU = 0.0, aV = 0.0;
177     GeomLib_Tool::Parameters( aSurface, aMiddlePnt, Precision::Confusion(), aU, aV );
178
179     gp_Dir aNorm;
180     if ( GeomLib::NormEstim( aSurface, gp_Pnt2d( aU, aV ), Precision::Confusion(), aNorm ) <= 1 )
181     {
182       aFaceN1 = aFace.Orientation() == TopAbs_REVERSED ? -aNorm : aNorm;
183     }
184
185     aFaceIt.Next();
186   }
187
188   if ( aFaceIt.More() )
189   {
190     TopoDS_Face aFace = TopoDS::Face( aFaceIt.Value() );
191
192     gp_Dir aSideDir;
193     if ( GetFaceSide( aFace, anEdge, aSideDir ) )
194     {
195       aFaceS2 = aSideDir;
196     }
197
198     Handle(Geom_Surface) aSurface = BRep_Tool::Surface( aFace );
199
200     Standard_Real aU = 0.0, aV = 0.0;
201     GeomLib_Tool::Parameters( aSurface, aMiddlePnt, Precision::Confusion(), aU, aV );
202
203     gp_Dir aNorm;
204     if ( GeomLib::NormEstim( aSurface, gp_Pnt2d( aU, aV ), Precision::Confusion(), aNorm ) <= 1 )
205     {
206       aFaceN2 = aFace.Orientation() == TopAbs_REVERSED ? -aNorm : aNorm;
207     }
208   }
209
210   gp_Pln aPln;
211   PositionLength( aBnd, aFaceN1, aFaceN2, aFaceS1, aFaceS2, aPnt1, aPnt2, aPln );
212
213   /* --------------------------------------------------------- *
214    *   construct the dimension for the best selected position
215    * --------------------------------------------------------- */
216
217   Handle(AIS_LengthDimension) aDimension = new AIS_LengthDimension( anEdge, aPln );
218
219   aDimension->SetFlyout( Settings.DefaultFlyout );
220
221   if ( !aDimension->IsValid() )
222   {
223     return NULL;
224   }
225
226   return aDimension;
227 }
228
229 //=================================================================================
230 // function : LengthByPoints
231 // purpose  :
232 //=================================================================================
233 Handle(AIS_LengthDimension) MeasureGUI_DimensionCreateTool::LengthByPoints( const GEOM::GeomObjPtr& theMeasuredObj1,
234                                                                             const GEOM::GeomObjPtr& theMeasuredObj2 ) const
235 {
236   /* ---------------------------------------------------------------- *
237    *                  get the edge and parent shape                   *
238    * ---------------------------------------------------------------- */
239
240   TopoDS_Shape aMeasuredShape1;
241   TopoDS_Shape aMeasuredShape2;
242   TopoDS_Shape aMainShape;
243
244   if ( !GEOMBase::GetShape( theMeasuredObj1.operator ->(), aMeasuredShape1 ) )
245   {
246     return NULL;
247   }
248
249   if ( !GEOMBase::GetShape( theMeasuredObj2.operator ->(), aMeasuredShape2 ) )
250   {
251     return NULL;
252   }
253
254   if ( !GEOMBase::GetShape( GetMainShape( theMeasuredObj1 ).get(), aMainShape ) )
255   {
256     return NULL;
257   }
258
259   /* ------------------------------------------------- */
260   /*            check the input geometry               */
261   /* ------------------------------------------------- */
262
263   TopoDS_Vertex aVertex1 = TopoDS::Vertex( aMeasuredShape1 );
264   TopoDS_Vertex aVertex2 = TopoDS::Vertex( aMeasuredShape2 );
265
266   gp_Pnt aPnt1 = BRep_Tool::Pnt( aVertex1 );
267   gp_Pnt aPnt2 = BRep_Tool::Pnt( aVertex2 );
268   if ( aPnt1.Distance( aPnt2 ) <= Precision::Confusion() )
269   {
270     return NULL;
271   }
272
273   /* ------------------------- *
274    *   position the dimension 
275    * ------------------------- */
276
277   Bnd_Box aBnd;
278   BRepBndLib::AddClose( aMainShape, aBnd );
279
280   // check whether the points share same edge
281   TopExp_Explorer anEdgeExp( aMainShape, TopAbs_EDGE, TopAbs_EDGE );
282   for ( ; anEdgeExp.More(); anEdgeExp.Next() )
283   {
284     TopoDS_Vertex anEdgeV1;
285     TopoDS_Vertex anEdgeV2;
286     TopExp::Vertices( TopoDS::Edge( anEdgeExp.Current() ), anEdgeV1, anEdgeV2 );
287     gp_Pnt anEdgePnt1 = BRep_Tool::Pnt( anEdgeV1 );
288     gp_Pnt anEdgePnt2 = BRep_Tool::Pnt( anEdgeV2 );
289
290     if ( aPnt1.Distance( anEdgePnt1 ) <= Precision::Confusion() )
291     {
292       if ( aPnt2.Distance( anEdgePnt2 ) <= Precision::Confusion() )
293       {
294         break;
295       }
296     }
297
298     if ( aPnt2.Distance( anEdgePnt1 ) <= Precision::Confusion() )
299     {
300       if ( aPnt1.Distance( anEdgePnt2 ) <= Precision::Confusion() )
301       {
302         break;
303       }
304     }
305   }
306
307   gp_Vec aFaceN1( gp::Origin(), gp::Origin() );
308   gp_Vec aFaceN2( gp::Origin(), gp::Origin() );
309   gp_Vec aFaceS1( gp::Origin(), gp::Origin() );
310   gp_Vec aFaceS2( gp::Origin(), gp::Origin() );
311
312   // have shared edge
313   if ( anEdgeExp.More() )
314   {
315     TopoDS_Edge anEdge = TopoDS::Edge( anEdgeExp.Current() );
316     TopTools_IndexedDataMapOfShapeListOfShape aRelationMap;
317     TopExp::MapShapesAndAncestors( aMainShape, TopAbs_EDGE, TopAbs_FACE, aRelationMap );
318     const TopTools_ListOfShape& aRelatedFaces = aRelationMap.FindFromKey( anEdge );
319
320     gp_Pnt aMiddlePnt = gp_Pnt( ( aPnt1.XYZ() + aPnt2.XYZ() ) * 0.5 );
321
322     TopTools_ListIteratorOfListOfShape aFaceIt( aRelatedFaces );
323
324     // get face side directions
325     if ( aFaceIt.More() )
326     {
327       TopoDS_Face aFace = TopoDS::Face( aFaceIt.Value() );
328
329       gp_Dir aSideDir;
330       if ( GetFaceSide( aFace, anEdge, aSideDir ) )
331       {
332         aFaceS1 = aSideDir;
333       }
334
335       Handle(Geom_Surface) aSurface = BRep_Tool::Surface( aFace );
336
337       Standard_Real aU = 0.0, aV = 0.0;
338       GeomLib_Tool::Parameters( aSurface, aMiddlePnt, Precision::Confusion(), aU, aV );
339
340       gp_Dir aNorm;
341       if ( GeomLib::NormEstim( aSurface, gp_Pnt2d( aU, aV ), Precision::Confusion(), aNorm ) <= 1 )
342       {
343         aFaceN1 = aFace.Orientation() == TopAbs_REVERSED ? -aNorm : aNorm;
344       }
345
346       aFaceIt.Next();
347     }
348
349     if ( aFaceIt.More() )
350     {
351       TopoDS_Face aFace = TopoDS::Face( aFaceIt.Value() );
352
353       gp_Dir aSideDir;
354       if ( GetFaceSide( aFace, anEdge, aSideDir ) )
355       {
356         aFaceS2 = aSideDir;
357       }
358
359       Handle(Geom_Surface) aSurface = BRep_Tool::Surface( aFace );
360
361       Standard_Real aU = 0.0, aV = 0.0;
362       GeomLib_Tool::Parameters( aSurface, aMiddlePnt, Precision::Confusion(), aU, aV );
363
364       gp_Dir aNorm;
365       if ( GeomLib::NormEstim( aSurface, gp_Pnt2d( aU, aV ), Precision::Confusion(), aNorm ) <= 1 )
366       {
367         aFaceN2 = aFace.Orientation() == TopAbs_REVERSED ? -aNorm : aNorm;
368       }
369     }
370   }
371
372   gp_Pln aPln;
373   PositionLength( aBnd, aFaceN1, aFaceN2, aFaceS1, aFaceS2, aPnt1, aPnt2, aPln );
374
375   /* --------------------------------------------------------- *
376    *   construct the dimension for the best selected position
377    * --------------------------------------------------------- */
378
379   Handle(AIS_LengthDimension) aDimension = new AIS_LengthDimension( aPnt1, aPnt2, aPln );
380
381   aDimension->SetFlyout( Settings.DefaultFlyout );
382
383   if ( !aDimension->IsValid() )
384   {
385     return NULL;
386   }
387
388   return aDimension;
389 }
390
391 //=================================================================================
392 // function : LengthByParallelEdges
393 // purpose  :
394 //=================================================================================
395 Handle(AIS_LengthDimension) MeasureGUI_DimensionCreateTool::LengthByParallelEdges( const GEOM::GeomObjPtr& theEdge1,
396                                                                                    const GEOM::GeomObjPtr& theEdge2 ) const
397 {
398   TopoDS_Shape aFirstSh;
399   if ( !GEOMBase::GetShape( theEdge1.operator ->(), aFirstSh ) )
400   {
401     return NULL;
402   }
403
404   TopoDS_Shape aSecondSh;
405   if ( !GEOMBase::GetShape( theEdge2.operator ->(), aSecondSh ) )
406   {
407     return NULL;
408   }
409
410   TopoDS_Edge aFirstEdge  = TopoDS::Edge( aFirstSh );
411   TopoDS_Edge aSecondEdge = TopoDS::Edge( aSecondSh );
412
413   // Build plane through three points
414   BRepAdaptor_Curve aCurve1( aFirstEdge );
415   BRepAdaptor_Curve aCurve2( aSecondEdge );
416
417   gp_Pnt aPnt1 = aCurve1.Value( 0.1 );
418   gp_Pnt aPnt2 = aCurve1.Value( 0.9 );
419   gp_Pnt aPnt3 = aCurve2.Value( 0.5 );
420
421   GC_MakePlane aMkPlane( aPnt1, aPnt2, aPnt3 );
422   Handle(Geom_Plane) aPlane = aMkPlane.Value();
423
424   // check whether it is possible to compute valid dimension
425   Handle(AIS_LengthDimension) aDimension = new AIS_LengthDimension ( aFirstEdge, aSecondEdge, aPlane->Pln() );
426
427   aDimension->SetFlyout( Settings.DefaultFlyout );
428
429   if ( !aDimension->IsValid() )
430   {
431     return NULL;
432   }
433
434   return aDimension;
435 }
436
437 //=================================================================================
438 // function : Diameter
439 // purpose  :
440 //=================================================================================
441 Handle(AIS_DiameterDimension) MeasureGUI_DimensionCreateTool::Diameter( const GEOM::GeomObjPtr& theMeasuredObj ) const
442 {
443   /* ------------------------------------------------ *
444    *     get the shape and its parent (if exist)      *
445    * ------------------------------------------------ */
446
447   TopoDS_Shape aMeasuredShape;
448   TopoDS_Shape aMainShape;
449   if ( !GEOMBase::GetShape( theMeasuredObj.operator ->(), aMeasuredShape ) )
450   {
451     return NULL;
452   }
453
454   if ( !GEOMBase::GetShape( GetMainShape( theMeasuredObj ).get(), aMainShape ) )
455   {
456     return NULL;
457   }
458
459   Bnd_Box aBnd;
460   BRepBndLib::AddClose( aMainShape, aBnd );
461
462   /* ------------------------------------------------ *
463    *    get the dimension construction arguments      *
464    * ------------------------------------------------ */
465
466   Handle(Geom_Circle) aCircle;
467
468   Standard_Real aPmin = 0, aPmax = 2 * M_PI;
469
470   gp_Vec aFaceN( gp_Pnt(0.0, 0.0, 0.0), gp_Pnt(0.0, 0.0, 0.0) );
471
472   switch ( aMeasuredShape.ShapeType() )
473   {
474     case TopAbs_FACE:
475     {
476       TopoDS_Face aMeasuredFace = TopoDS::Face(aMeasuredShape);
477
478       BRepAdaptor_Surface aSurf( aMeasuredFace );
479
480       Standard_Real aVmin = aSurf.FirstVParameter();
481       Standard_Real aVmax = aSurf.LastVParameter();
482
483       // get arguments of closed sphere
484       if ( aSurf.GetType() == GeomAbs_Sphere )
485       {
486         if ( !aSurf.IsUClosed() || !aSurf.IsVClosed() )
487         {
488           return NULL;
489         }
490
491         // take circle in XOY plane from sphere
492         gp_Sphere aSphere = aSurf.Sphere();
493         gp_Ax2 anAx2 = gp_Ax2( aSphere.Location(), gp::DZ() );
494         aCircle = new Geom_Circle( anAx2, aSphere.Radius() );
495         break;
496       }
497
498
499       // get arguments of closed torus
500       if ( aSurf.GetType() == GeomAbs_Torus )
501       {
502         if ( !aSurf.IsUClosed() || !aSurf.IsVClosed() )
503         {
504           return NULL;
505         }
506
507         gp_Torus aTorus = aSurf.Torus();
508         gp_Ax2 anAx2 = aTorus.Position().Ax2();
509         aCircle = new Geom_Circle( anAx2, aTorus.MinorRadius() );
510         break;
511       }
512
513       // get arguments of closed cone
514       if ( aSurf.GetType() == GeomAbs_Cone )
515       {
516         if ( !aSurf.IsUClosed() || !aSurf.IsVClosed() )
517         {
518           return NULL;
519         }
520
521         gp_Cone aCone = aSurf.Cone();
522         gp_Ax2 anAx2 = aCone.Position().Ax2();
523         aCircle = new Geom_Circle( anAx2, aCone.RefRadius() );
524
525         aFaceN = aCone.SemiAngle() > 0.0 
526           ?  anAx2.Axis().Direction()
527           : -anAx2.Axis().Direction();
528         break;
529       }
530
531       // get arguments of closed/opened cylinder
532       if ( aSurf.GetType() == GeomAbs_Cylinder )
533       {
534         Handle(Geom_Surface) aBasisSurface = Handle(Geom_Surface)::DownCast(
535           aSurf.Surface().Surface()->Transformed( aSurf.Trsf() ) );
536
537         Handle(Geom_Curve) aCurve = aBasisSurface->VIso( (aVmax + aVmin) * 0.5 );
538
539         if ( aCurve->IsKind( STANDARD_TYPE( Geom_Circle ) ) )
540         {
541           aPmin = aSurf.FirstUParameter();
542           aPmax = aSurf.LastUParameter();
543           aCircle = Handle(Geom_Circle)::DownCast( aCurve );
544         }
545         else if (  aCurve->IsKind( STANDARD_TYPE( Geom_TrimmedCurve ) ) )
546         {
547           Handle(Geom_TrimmedCurve) aTrimmedCurve = Handle(Geom_TrimmedCurve)::DownCast( aCurve );
548           aPmin = aTrimmedCurve->FirstParameter();
549           aPmax = aTrimmedCurve->LastParameter();
550
551           aCircle = Handle(Geom_Circle)::DownCast( aTrimmedCurve );
552         }
553
554         break;
555       }
556
557       // face containing edge?
558       TopExp_Explorer anExp( aMeasuredShape, TopAbs_EDGE );
559       if ( !anExp.More() )
560       {
561         return NULL;
562       }
563
564       TopoDS_Shape anExpEdge = anExp.Current();
565       if ( anExpEdge.IsNull() )
566       {
567         return NULL;
568       }
569
570       // only a single edge is expected
571       anExp.Next();
572       if ( anExp.More() )
573       {
574         return NULL;
575       }
576
577       // do not break, go to edge checking
578       aMeasuredShape = anExpEdge;
579     }
580
581     case TopAbs_EDGE:
582     {
583       TopoDS_Edge aMeasureEdge = TopoDS::Edge( aMeasuredShape );
584
585       BRepAdaptor_Curve aCurve(aMeasureEdge);
586
587       if ( aCurve.GetType() != GeomAbs_Circle )
588       {
589         return NULL;
590       }
591
592       aPmin = aCurve.FirstParameter();
593       aPmax = aCurve.LastParameter();
594
595       aCircle = new Geom_Circle( aCurve.Circle() );
596
597       // check if there is an parent face containing the edge
598       TopTools_IndexedDataMapOfShapeListOfShape aShapeMap;
599       TopExp::MapShapesAndAncestors( aMainShape, TopAbs_EDGE, TopAbs_FACE, aShapeMap );
600       const TopTools_ListOfShape& aFaces = aShapeMap.FindFromKey( aMeasureEdge );
601
602       TopTools_ListIteratorOfListOfShape aFaceIt( aFaces );
603       for ( ; aFaceIt.More(); aFaceIt.Next() )
604       {
605         TopoDS_Face aFace = TopoDS::Face( aFaceIt.Value() );
606
607         Handle(Geom_Surface) aSurface = BRep_Tool::Surface( TopoDS::Face( aFace ) );
608
609         gp_Pnt aCircCenter = aCircle->Circ().Location();
610         Standard_Real aCircU = 0.0, aCircV = 0.0;
611         GeomLib_Tool::Parameters( aSurface, aCircCenter, Precision::Confusion(), aCircU, aCircV );
612
613         gp_Dir aNorm;
614         if ( GeomLib::NormEstim( aSurface, gp_Pnt2d( aCircU, aCircV ), Precision::Confusion(), aNorm ) > 1 )
615         {
616           break;
617         }
618
619         if ( aNorm.Angle( aCircle->Circ().Axis().Direction() ) > M_PI * 0.25 )
620         {
621           continue;
622         }
623
624         aFaceN = gp_Vec( aFace.Orientation() == TopAbs_REVERSED ? -aNorm : aNorm );
625       }
626     }
627     break;
628   }
629
630   if ( aCircle.IsNull() )
631   {
632     return NULL;
633   }
634
635   ElCLib::AdjustPeriodic( 0.0, M_PI * 2, Precision::PConfusion(), aPmin, aPmax );
636
637   /* ------------------------- *
638    *   position the dimension 
639    * ------------------------- */
640
641   gp_Pnt aPnt1;
642   gp_Pnt aPnt2;
643   gp_Pln aPln;
644
645   // diameter for closed circle
646   if ( Abs( ( aPmax - aPmin ) - M_PI * 2 ) <= Precision::PConfusion() )
647   {
648     PositionDiameter( aBnd, aFaceN, aCircle->Circ(), aPnt1, aPnt2, aPln );
649   }
650   // diameter for half-closed circle
651   else if ( Abs( aPmax - aPmin ) > M_PI )
652   {
653     Standard_Real anAnchor = aPmin + ( ( aPmax - aPmin ) - M_PI ) * 0.5;
654
655     PositionDiameter( aBnd, aFaceN, aCircle->Circ(), anAnchor, aPln );
656
657     aPnt1 = ElCLib::Value( anAnchor, aCircle->Circ() );
658     aPnt2 = ElCLib::Value( anAnchor + M_PI, aCircle->Circ() );
659   }
660   // diameter for less than half-closed circle
661   else
662   {
663     Standard_Real anAnchor = aPmin + ( aPmax - aPmin ) * 0.5;
664
665     PositionDiameter( aBnd, aFaceN, aCircle->Circ(), anAnchor, aPln );
666
667     aPnt1 = ElCLib::Value( anAnchor, aCircle->Circ() );
668     aPnt2 = ElCLib::Value( anAnchor + M_PI, aCircle->Circ() );
669   }
670
671   /* --------------------------------------------------------- *
672    *   construct the dimension for the best selected position
673    * --------------------------------------------------------- */
674
675   gp_Pnt aCircP = aCircle->Circ().Location();
676   gp_Dir aCircN = aCircle->Circ().Axis().Direction();
677   gp_Dir aCircX = gce_MakeDir( aPnt1, aPnt2 );
678   Standard_Real aCircR = aCircle->Circ().Radius();
679
680   // construct closed circle as base for the diameter dimension
681   Standard_Boolean isReversed = ( ( aPln.Axis().Direction() ^ aCircX ) * aCircN ) < 0.0;
682
683   gp_Circ aRuledCirc = gce_MakeCirc( gp_Ax2( aCircP, isReversed ? -aCircN : aCircN, aCircX ), aCircR );
684
685   Handle(AIS_DiameterDimension) aDimension = new AIS_DiameterDimension( aRuledCirc, aPln );
686
687   // if flyout is extended in tangent direction to circle, the default flyout value is used
688   // if flyout is extended in plane of circle, the zero flyout value is choosen initially
689   Standard_Real aFlyout = aCircN.IsParallel( aPln.Axis().Direction(), Precision::Angular() ) ? 0.0 : Settings.DefaultFlyout;
690
691   aDimension->SetFlyout(aFlyout);
692
693   if ( !aDimension->IsValid() )
694   {
695     return NULL;
696   }
697
698   return aDimension;
699 }
700
701 //=================================================================================
702 // function : AngleByTwoEdges
703 // purpose  :
704 //=================================================================================
705 Handle(AIS_AngleDimension) MeasureGUI_DimensionCreateTool::AngleByTwoEdges( const GEOM::GeomObjPtr& theEdge1,
706                                                                             const GEOM::GeomObjPtr& theEdge2 ) const
707 {
708   /* --------------------------------------------------- */
709   /*         get construction and parent shapes          */
710   /* --------------------------------------------------- */
711
712   TopoDS_Shape aShapeEdge1;
713   TopoDS_Shape aShapeMain1;
714   if ( !GEOMBase::GetShape( theEdge1.get(), aShapeEdge1 ) )
715   {
716     return NULL;
717   }
718   if ( !GEOMBase::GetShape( GetMainShape( theEdge1 ).get(), aShapeMain1 ) )
719   {
720     return NULL;
721   }
722
723   TopoDS_Shape aShapeEdge2;
724   TopoDS_Shape aShapeMain2;
725   if ( !GEOMBase::GetShape( theEdge2.get(), aShapeEdge2 ) )
726   {
727     return NULL;
728   }
729   if ( !GEOMBase::GetShape( GetMainShape( theEdge2 ).get(), aShapeMain2 ) )
730   {
731     return NULL;
732   }
733
734   /* ---------------------------------------------------- */
735   /*             check construction edges                 */
736   /* ---------------------------------------------------- */
737
738   TopoDS_Edge aFirstEdge  = TopoDS::Edge( aShapeEdge1 );
739   TopoDS_Edge aSecondEdge = TopoDS::Edge( aShapeEdge2 );
740
741   // check whether it is possible to compute dimension on the passed edges
742   Handle(AIS_AngleDimension) aDimension = new AIS_AngleDimension( aFirstEdge, aSecondEdge );
743
744   if ( !aDimension->IsValid() )
745   {
746     return NULL;
747   }
748
749   const gp_Pnt& aFirstPoint  = aDimension->FirstPoint();
750   const gp_Pnt& aSecondPoint = aDimension->SecondPoint();
751   const gp_Pnt& aCenterPoint = aDimension->CenterPoint();
752
753   gp_Vec aVec1( aCenterPoint, aFirstPoint );
754   gp_Vec aVec2( aCenterPoint, aSecondPoint );
755
756   Standard_Real anAngle = aVec2.AngleWithRef( aVec1, aDimension->GetPlane().Axis().Direction() );
757
758   if ( anAngle < 0.0 )
759   {
760     aDimension = new AIS_AngleDimension( aSecondPoint, aCenterPoint, aFirstPoint );
761   }
762
763   aDimension->SetFlyout( Settings.DefaultFlyout );
764
765   return aDimension;
766 }
767
768 //=================================================================================
769 // function : AngleByThreePoints
770 // purpose  :
771 //=================================================================================
772 Handle(AIS_AngleDimension) MeasureGUI_DimensionCreateTool::AngleByThreePoints( const GEOM::GeomObjPtr& thePoint1,
773                                                                                const GEOM::GeomObjPtr& thePoint2,
774                                                                                const GEOM::GeomObjPtr& thePoint3 ) const
775 {
776   TopoDS_Shape aFirstSh;
777   if ( !GEOMBase::GetShape( thePoint1.operator ->(), aFirstSh ) )
778   {
779     return NULL;
780   }
781
782   TopoDS_Shape aSecondSh;
783   if ( !GEOMBase::GetShape( thePoint2.operator ->(), aSecondSh ) )
784   {
785     return NULL;
786   }
787
788   TopoDS_Shape aThirdSh;
789   if ( !GEOMBase::GetShape( thePoint3.operator ->(), aThirdSh ) )
790   {
791     return NULL;
792   }
793
794   TopoDS_Vertex aFirstVertex  = TopoDS::Vertex( aFirstSh );
795   TopoDS_Vertex aSecondVertex = TopoDS::Vertex( aSecondSh );
796   TopoDS_Vertex aThirdVertex  = TopoDS::Vertex( aThirdSh );
797
798   gp_Pnt aPnt1 = BRep_Tool::Pnt( aFirstVertex );
799   gp_Pnt aPnt2 = BRep_Tool::Pnt( aSecondVertex );
800   gp_Pnt aPnt3 = BRep_Tool::Pnt( aThirdVertex );
801
802   // check whether it is possible to compute dimension on the passed points
803   Handle(AIS_AngleDimension) aDimension = new AIS_AngleDimension( aPnt1, aPnt2, aPnt3 );
804
805   if ( !aDimension->IsValid() )
806   {
807     return NULL;
808   }
809
810   return aDimension;
811 }
812
813 //=================================================================================
814 // function : PositionLength
815 // purpose  : The method provides preliminary positioning algorithm for
816 //            for length dimensions measuring the length between two points.
817 //            Parameters:
818 //              theBnd [in] - the bounding box of the main shape
819 //              theFaceN1 [in] - the normal to a first face of edge length (if any)
820 //              theFaceN2 [in] - the normal to a second face of edge length (if any)
821 //              theFaceS1 [in] - the side vector from a first face of edge length (if any)
822 //              theFaceS2 [in] - the side vector from a second face of edge length (if any)
823 //              thePnt1 [in] - the first measured point
824 //              thePnt2 [in] - the last measured point
825 //            The method selects flyout plane to best match the current
826 //            view projection. If edge length is constructed, then the flyout
827 //            can go in line with sides of faces, normal to the faces, or
828 //            aligned to XOY, YOZ, ZOX planes.
829 //=================================================================================
830 void MeasureGUI_DimensionCreateTool::PositionLength( const Bnd_Box& theBnd,
831                                                      const gp_Vec& theFaceN1,
832                                                      const gp_Vec& theFaceN2,
833                                                      const gp_Vec& theFaceS1,
834                                                      const gp_Vec& theFaceS2,
835                                                      const gp_Pnt& thePnt1,
836                                                      const gp_Pnt& thePnt2,
837                                                      gp_Pln& thePln ) const
838 {
839   Standard_Boolean isFace1 = theFaceN1.Magnitude() > Precision::Confusion();
840   Standard_Boolean isFace2 = theFaceN2.Magnitude() > Precision::Confusion();
841   gp_Vec anAverageN( gp_Pnt(0.0, 0.0, 0.0), gp_Pnt(0.0, 0.0, 0.0) );
842
843   // get average direction in case of two non-sharp angled faces
844   if ( isFace1 && isFace2 )
845   {
846     Standard_Boolean isSame = theFaceN1.IsParallel( theFaceN2, Precision::Angular() );
847     if ( !isSame )
848     {
849       gp_Dir aReferenceDir = theFaceN1 ^ theFaceN2;
850       // compute angle between face sides [0 - 2PI]
851       Standard_Real aDirAngle = theFaceN1.AngleWithRef( theFaceN2, aReferenceDir );
852       if ( aDirAngle < 0 )
853       {
854         aDirAngle = ( M_PI * 2.0 ) - aDirAngle;
855       }
856
857       // non-sharp angle, use averaged directio
858       if ( aDirAngle > M_PI * 0.5 )
859       {
860         anAverageN = theFaceN1 + theFaceN2;
861       }
862
863       if ( aDirAngle > M_PI )
864       {
865         isFace1 = Standard_False;
866         isFace2 = Standard_False;
867       }
868     }
869   }
870
871   Standard_Boolean isAverage = anAverageN.Magnitude() > Precision::Confusion();
872
873   SeqOfDirs aFlyoutDirs;
874   if ( isFace1 )
875   {
876     aFlyoutDirs.Append( theFaceN1 );
877     aFlyoutDirs.Append( theFaceS1 );
878   }
879   if ( isFace2 )
880   {
881     aFlyoutDirs.Append( theFaceN2 );
882     aFlyoutDirs.Append( theFaceS2 );
883   }
884   if ( isAverage )
885   {
886     aFlyoutDirs.Append( anAverageN );
887   }
888
889   ChooseLengthFlyoutsFromBnd( aFlyoutDirs, thePnt1, thePnt2, theBnd );
890
891   if ( aFlyoutDirs.IsEmpty() )
892   {
893     return;
894   }
895
896   gp_Dir aPointDir = gce_MakeDir( thePnt1, thePnt2 );
897
898   // make planes for dimension presentation according to flyout directions
899   SeqOfPlanes aSeqOfPlanes;
900   for ( Standard_Integer aFlyoutIt = 1; aFlyoutIt <= aFlyoutDirs.Length(); ++aFlyoutIt )
901   {
902     gp_Pln aPlane( thePnt1, aPointDir ^ aFlyoutDirs.Value( aFlyoutIt ) );
903     aSeqOfPlanes.Append( aPlane );
904   }
905
906   Handle(V3d_View) aView = Settings.ActiveView;
907
908   thePln = !aView.IsNull()
909     ? SelectPlaneForProjection( aSeqOfPlanes, aView )
910     : aSeqOfPlanes.First();
911 }
912
913 //=================================================================================
914 // function : PositionDiameter
915 // purpose  : The method provides preliminary positioning algorithm for
916 //            for diameter dimensions measuring the circle.
917 //            Parameters:
918 //              theBnd [in] - the bounding box of the shape
919 //              theFaceN [in] - the circle face normal (can be void)
920 //              theCirc [in] - the measured circle
921 //              thePnt1 [out] - first dimension point
922 //              thePnt2 [out] - second dimension point
923 //              thePln [out] - dimension flyout plane
924 //            The method selects points on the circle for diameter dimension and
925 //            flyout plane to best match the current view projection (if any)
926 //            The points are aligned to XOY, YOZ, ZOX planes.
927 //            The flyout takes into account bounding box of main shape of face normal
928 //            vector. The flyouts tangetial to the circle plane are directed in 
929 //            accordance with the face normal (if not-null), otherwise the flyouts
930 //            are turned to direct to the closest border of bounding box.
931 //=================================================================================
932 void MeasureGUI_DimensionCreateTool::PositionDiameter( const Bnd_Box& theBnd,
933                                                        const gp_Vec& theFaceN,
934                                                        const gp_Circ& theCirc,
935                                                        gp_Pnt& thePnt1,
936                                                        gp_Pnt& thePnt2,
937                                                        gp_Pln& thePln ) const
938 {
939   // select list of measured segments aligned to projection planes
940   SeqOfDirs aProjectionDirs;
941   aProjectionDirs.Append( gp::DX() );
942   aProjectionDirs.Append( gp::DY() );
943   aProjectionDirs.Append( gp::DZ() );
944
945   SeqOfSegments aMeasureSegments = GetInPlaneSegments( theCirc, aProjectionDirs );
946
947   SeqOfPlnsAndSegments aSelectedPlanes;
948
949   // select in-circle-plane direction for flyout closest to border of bounding box
950   for ( Standard_Integer aSegmentIt = 1; aSegmentIt <= aMeasureSegments.Length(); ++aSegmentIt )
951   {
952     const Segment& aSegment = aMeasureSegments.Value(aSegmentIt);
953
954     Standard_Real anAnchor = ElCLib::Parameter( theCirc, aSegment.First );
955
956     gp_Pln aSelectedPlane;
957
958     PositionDiameter( theBnd, theFaceN, theCirc, anAnchor, aSelectedPlane );
959
960     aSelectedPlanes.Append( PlaneAndSegment( aSelectedPlane, aSegment ) );
961   }
962
963   Handle(V3d_View) aView = Settings.ActiveView;
964
965   PlaneAndSegment aChoosenParams = !aView.IsNull()
966     ? SelectPlaneForProjection( aSelectedPlanes, aView )
967     : aSelectedPlanes.First();
968
969   thePnt1 = ((Segment)aChoosenParams).First;
970   thePnt2 = ((Segment)aChoosenParams).Last;
971   thePln  = ((gp_Pln)aChoosenParams);
972 }
973
974 //=================================================================================
975 // function : PositionDiameter
976 // purpose  : The method provides preliminary positioning algorithm for
977 //            for diameter dimensions measuring the circle. The diameter
978 //            dimension is bound at anchor point on the circle.
979 //            Parameters:
980 //              theBnd [in] the bounding box of the shape
981 //              theFaceN [in] - the circle face normal (can be void)
982 //              theCirc [in] - the measured circle
983 //              theAnchorAt [in] - the anchoring parameter
984 //              thePln [out] - dimension flyout plane
985 //            The method selects flyout plane to best match the current
986 //            view projection. The flyout plane can be parallel to circle,
987 //            or tangent to it.
988 //=================================================================================
989 void MeasureGUI_DimensionCreateTool::PositionDiameter( const Bnd_Box& theBnd,
990                                                        const gp_Vec& theFaceN,
991                                                        const gp_Circ& theCirc,
992                                                        const Standard_Real& theAnchorAt,
993                                                        gp_Pln& thePln ) const
994 {
995   gp_Dir aCircN = theCirc.Axis().Direction();
996   gp_Pnt aCircP = theCirc.Location();
997
998   // select tangent direction for flyout closest to border of bounding box
999   gp_Dir aSelectedTanDir;
1000   if ( theFaceN.Magnitude() < Precision::Confusion() )
1001   {
1002     SeqOfDirs aTangentDirs;
1003     aTangentDirs.Append(  aCircN );
1004     aTangentDirs.Append( -aCircN );
1005     aSelectedTanDir = ChooseDirFromBnd( aTangentDirs, aCircP, theBnd );
1006   }
1007   else
1008   {
1009     aSelectedTanDir = gp_Dir( theFaceN );
1010   }
1011
1012   gp_Pnt aPnt1 = ElCLib::Value( theAnchorAt, theCirc );
1013   gp_Pnt aPnt2 = ElCLib::Value( theAnchorAt + M_PI, theCirc );
1014
1015   gp_Dir aSegmentDir = gce_MakeDir( aPnt1, aPnt2 );
1016
1017   SeqOfDirs aSegmentDirs;
1018   aSegmentDirs.Append(  aCircN ^ aSegmentDir );
1019   aSegmentDirs.Append( -aCircN ^ aSegmentDir );
1020   gp_Dir aSelectedSegDir = ChooseDirFromBnd( aSegmentDirs, aCircP, theBnd );
1021
1022   gp_Pln aTangentFlyout( aCircP, aSegmentDir ^ aSelectedTanDir );
1023   gp_Pln aCoplanarFlyout( aCircP, aSegmentDir ^ aSelectedSegDir );
1024
1025   SeqOfPlanes aSelectedPlanes;
1026   aSelectedPlanes.Append( aTangentFlyout );
1027   aSelectedPlanes.Append( aCoplanarFlyout );
1028
1029   Handle(V3d_View) aView = Settings.ActiveView;
1030
1031   thePln = !aView.IsNull()
1032     ? SelectPlaneForProjection( aSelectedPlanes, aView )
1033     : aSelectedPlanes.First();
1034 }
1035
1036 //=================================================================================
1037 // function : ChooseLengthFlyoutsFromBnd
1038 // purpose  :
1039 //=================================================================================
1040 void MeasureGUI_DimensionCreateTool::ChooseLengthFlyoutsFromBnd( SeqOfDirs& theDirs,
1041                                                                  const gp_Pnt& thePnt1,
1042                                                                  const gp_Pnt& thePnt2,
1043                                                                  const Bnd_Box& theBnd ) const
1044 {
1045   // compose a list of axis-aligned planes for lying-in flyouts
1046   NCollection_Sequence<gp_Pln> anAAPlanes;
1047
1048   // the axis-aligned planes for flyouts are built from
1049   // three points (P1, P2, and P1 translated in orthogonal
1050   // direction dx, dy, dz)
1051   gp_Dir anAxes[3] = { gp::DX(), gp::DY(), gp::DZ() };
1052
1053   for ( int anIt = 0; anIt < 3; ++anIt )
1054   {
1055     const gp_Dir& anAxisDir = anAxes[anIt];
1056     gp_Pnt aPnt3 = thePnt1.Translated( gp_Vec( anAxisDir ) );
1057     gce_MakePln aMakePlane( thePnt1, thePnt2, aPnt3 );
1058     if ( !aMakePlane.IsDone() )
1059     {
1060       continue;
1061     }
1062
1063     anAAPlanes.Append( aMakePlane.Value() );
1064   }
1065
1066   // find out what is the closest direction outside of the bounding box
1067   NCollection_Sequence<gp_Pln>::Iterator aPlaneIt( anAAPlanes );
1068
1069   gp_Dir aPointDir = gce_MakeDir( thePnt1, thePnt2 );
1070
1071   for ( ; aPlaneIt.More(); aPlaneIt.Next() )
1072   {
1073     const gp_Pln& aPlane = aPlaneIt.Value();
1074
1075     // transform bounding box to orthogonal coordiantes relative to
1076     // dimension points P1, P2 (x-axis) and plane direction (z-axis),
1077     // where y coordinates will correspond to flyout direction against
1078     // the dimension point line
1079     gp_Ax3 aFlyoutSpace( thePnt1, aPlane.Axis().Direction(), aPointDir );
1080
1081     gp_Trsf aRelativeTransform;
1082     aRelativeTransform.SetTransformation( gp_Ax3(), aFlyoutSpace );
1083     Bnd_Box aRelativeBounds = theBnd.Transformed( aRelativeTransform );
1084
1085     Standard_Real aXmin, aXmax, aYmin, aYmax, aZmin, aZmax;
1086     aRelativeBounds.Get( aXmin, aYmin, aZmin, aXmax, aYmax, aZmax );
1087
1088     gp_Dir aPosFlyout = aPlane.Axis().Direction() ^ aPointDir;
1089     gp_Dir aNegFlyout = aPosFlyout.Reversed();
1090
1091     // select positive or negative flyout
1092     theDirs.Append( Abs( aYmax ) < Abs( aYmin ) ? aPosFlyout : aNegFlyout );
1093   }
1094 }
1095
1096 //=================================================================================
1097 // function : ChooseDirFromBnd
1098 // purpose  : The method chooses the best direction from the passed list of
1099 //            directions, which is closest to the bounding box border.
1100 //            Parameters:
1101 //              theCandidates [in] the list of candidate directions
1102 //              thePos [in] the position from where the directions are traced
1103 //              theBnd [in] the bounding box of main shape
1104 //=================================================================================
1105 gp_Dir MeasureGUI_DimensionCreateTool::ChooseDirFromBnd( const SeqOfDirs& theCandidates,
1106                                                          const gp_Pnt& thePos,
1107                                                          const Bnd_Box& theBnd ) const
1108 {
1109   gp_Dir aBestDir;
1110
1111   Standard_Real aBestDistance = RealLast();
1112
1113   SeqOfDirs::Iterator anIt( theCandidates );
1114   for ( ; anIt.More(); anIt.Next() )
1115   {
1116     const gp_Dir& aDir = anIt.Value();
1117
1118     gp_Ax3 aFlyoutSpace( thePos, aDir );
1119
1120     gp_Trsf aRelativeTransform;
1121     aRelativeTransform.SetTransformation( gp_Ax3(), aFlyoutSpace );
1122     Bnd_Box aRelativeBounds = theBnd.Transformed( aRelativeTransform );
1123
1124     Standard_Real aXmin, aXmax, aYmin, aYmax, aZmin, aZmax;
1125     aRelativeBounds.Get( aXmin, aYmin, aZmin, aXmax, aYmax, aZmax );
1126
1127     if ( aYmax < aBestDistance )
1128     {
1129       aBestDir = aDir;
1130       aBestDistance = aYmax;
1131     }
1132   }
1133
1134   return aBestDir;
1135 }
1136
1137 //=================================================================================
1138 // function : SelectPlaneForProjection
1139 // purpose  : Select best matching plane in current view projection
1140 //=================================================================================
1141 template <typename TPlane>
1142 TPlane MeasureGUI_DimensionCreateTool::SelectPlaneForProjection( const NCollection_Sequence<TPlane>& thePlanes,
1143                                                                  const Handle(V3d_View)& theView ) const
1144 {
1145   Quantity_Parameter U[3];
1146   Quantity_Parameter N[3];
1147   theView->Up( U[0], U[1], U[2] );
1148   theView->Proj( N[0], N[1], N[2] );
1149
1150   gp_Dir aViewN( (Standard_Real)N[0], (Standard_Real)N[1], (Standard_Real)N[2] );
1151   gp_Dir aViewU( (Standard_Real)U[0], (Standard_Real)U[1], (Standard_Real)U[2] );
1152
1153   TPlane aBestPlane = thePlanes.First();
1154
1155   Standard_Real aBestDotProduct = RealFirst();
1156
1157   for ( Standard_Integer aPlnIt = 1; aPlnIt <= thePlanes.Length(); ++aPlnIt )
1158   {
1159     const TPlane& aPlane = thePlanes.Value( aPlnIt );
1160
1161     Standard_Real aDotProduct = Abs( ((gp_Pln)aPlane).Axis().Direction() * aViewN );
1162
1163     // preferred plane is "view parallel"
1164     if ( aDotProduct <= aBestDotProduct )
1165     {
1166       continue;
1167     }
1168
1169     aBestPlane = aPlane;
1170
1171     aBestDotProduct = aDotProduct;
1172   }
1173
1174   return aBestPlane;
1175 }
1176
1177 //=================================================================================
1178 // function : GetMainShape
1179 // purpose  :
1180 //=================================================================================
1181 GEOM::GeomObjPtr MeasureGUI_DimensionCreateTool::GetMainShape( const GEOM::GeomObjPtr& theShape ) const
1182 {
1183   // iterate over top-level objects to search for main shape
1184   GEOM::GeomObjPtr aMainShapeIt = theShape;
1185   while ( !aMainShapeIt->IsMainShape() )
1186   {
1187     aMainShapeIt = aMainShapeIt->GetMainShape();
1188   }
1189   return aMainShapeIt;
1190 }
1191
1192 //=================================================================================
1193 // function : GetFaceSide
1194 // purpose  :
1195 //=================================================================================
1196 bool MeasureGUI_DimensionCreateTool::GetFaceSide( const TopoDS_Face& theFace, const TopoDS_Edge& theEdge, gp_Dir& theDir ) const
1197 {
1198   // get correctly oriented edge from main shape
1199   TopoDS_Edge anEdgeFromFace;
1200   TopExp_Explorer anExplorer( theFace.Oriented( TopAbs_FORWARD ), TopAbs_EDGE );
1201   for ( ; anExplorer.More(); anExplorer.Next() )
1202   {
1203     TopoDS_Edge aCurrentEdge = TopoDS::Edge( anExplorer.Current() );
1204     if ( theEdge.IsSame( aCurrentEdge ) )
1205     {
1206       anEdgeFromFace = aCurrentEdge;
1207       break;
1208     }
1209   }
1210
1211   if ( anEdgeFromFace.IsNull() )
1212   {
1213     return false;
1214   }
1215
1216   // check out the direction of face extensions from its boundaries at the edge location
1217   // made assumption here that for any linear bounding edge the
1218   // normals are same on the whole length of that edge
1219   Handle(Geom_Surface) aSurface = BRep_Tool::Surface( theFace );
1220   if ( aSurface.IsNull() || !aSurface->IsKind( STANDARD_TYPE(Geom_ElementarySurface) ) )
1221   {
1222     return false;
1223   }
1224
1225   BRepAdaptor_Curve aSurfCurve( anEdgeFromFace, theFace );
1226   if ( !aSurfCurve.IsCurveOnSurface() )
1227   {
1228     return false;
1229   }
1230
1231   Standard_Real aHalfRange = ( aSurfCurve.FirstParameter() + aSurfCurve.LastParameter() ) / 2.0;
1232
1233   gp_Pnt aPoint = aSurfCurve.Value( aHalfRange );
1234
1235   Standard_Real aPointU = 0.0;
1236   Standard_Real aPointV = 0.0;
1237   GeomLib_Tool::Parameters( aSurface, aPoint, Precision::Confusion(), aPointU, aPointV );
1238
1239   gp_Dir aNorm;
1240   if ( GeomLib::NormEstim( aSurface, gp_Pnt2d( aPointU, aPointV ), Precision::Confusion(), aNorm ) > 1 )
1241   {
1242     return false;
1243   }
1244
1245   gp_Vec aTangent = aSurfCurve.DN( aHalfRange, 1 );
1246   if ( aTangent.Magnitude() < Precision::Confusion() )
1247   {
1248     return false;
1249   }
1250
1251   TopAbs_Orientation anEdgeOrientation = anEdgeFromFace.Orientation();
1252   if ( anEdgeOrientation == TopAbs_REVERSED )
1253   {
1254     aTangent.Reverse();
1255   }
1256
1257   theDir = gp_Dir( aTangent ) ^ aNorm;
1258   return true;
1259 }
1260
1261 //=================================================================================
1262 // function : GetInPlaneSegments
1263 // purpose  : The method finds segments crossing the passed circle,
1264 //            which lie in the passed planes.
1265 //            Parameters:
1266 //              theCirc [in] the circle to be crossed.
1267 //              thePlanes [in] the projection planes crossing the circle.
1268 //=================================================================================
1269 MeasureGUI_DimensionCreateTool::SeqOfSegments
1270   MeasureGUI_DimensionCreateTool::GetInPlaneSegments( const gp_Circ& theCirc,
1271                                                       const SeqOfDirs& thePlanes ) const
1272 {
1273   SeqOfSegments aResult;
1274
1275   gp_Pnt aCircP = theCirc.Location();
1276   gp_Dir aCircN = theCirc.Axis().Direction();
1277   Standard_Real aCircR = theCirc.Radius();
1278
1279   SeqOfDirs::Iterator anIt( thePlanes );
1280   for ( ; anIt.More(); anIt.Next() )
1281   {
1282     const gp_Dir& aDir = anIt.Value();
1283
1284     if ( aDir.IsParallel( aCircN, Precision::Angular() ) )
1285     {
1286       continue;
1287     }
1288
1289     gp_Dir aIntDir = aDir ^ aCircN;
1290
1291     gp_Pnt aPnt1 = gp_Pnt( aCircP.XYZ() - aIntDir.XYZ() * aCircR );
1292     gp_Pnt aPnt2 = gp_Pnt( aCircP.XYZ() + aIntDir.XYZ() * aCircR );
1293     Segment aSegment;
1294     aSegment.First = aPnt1;
1295     aSegment.Last  = aPnt2;
1296     aResult.Append( aSegment );
1297   }
1298
1299   return aResult;
1300 }