1 // Created on: 1996-02-06
2 // Created by: Robert COUBLANC
3 // Copyright (c) 1996-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
6 // This file is part of Open CASCADE Technology software library.
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
17 #include <Geom_Circle.hxx>
19 #include <Select3D_Pnt.hxx>
20 #include <Select3D_SensitiveTriangle.hxx>
21 #include <Precision.hxx>
23 #include <Select3D_SensitiveCircle.hxx>
25 IMPLEMENT_STANDARD_HANDLE (Select3D_SensitiveCircle, Select3D_SensitivePoly)
26 IMPLEMENT_STANDARD_RTTIEXT(Select3D_SensitiveCircle, Select3D_SensitivePoly)
28 static Standard_Integer GetCircleNbPoints (const Handle(Geom_Circle)& theCircle,
29 const Standard_Integer theNbPnts)
31 // Check if number of points is invalid.
32 // In this case myPolyg raises Standard_ConstructionError
33 // exception (look constructor bellow).
37 if (theCircle->Radius() > Precision::Confusion())
38 return 2 * theNbPnts + 1;
40 // The radius is too small and circle degenerates into point
44 static Standard_Integer GetArcNbPoints (const Handle(Geom_Circle)& theCircle,
45 const Standard_Integer theNbPnts)
47 // There is no need to check number of points here.
48 // In case of invalid number of points this method returns
49 // -1 or smaller value.
50 if (theCircle->Radius() > Precision::Confusion())
51 return 2 * theNbPnts - 1;
53 // The radius is too small and circle degenerates into point
57 //=======================================================================
58 //function : Select3D_SensitiveCircle (constructor)
59 //purpose : Definition of a sensitive circle
60 //=======================================================================
61 Select3D_SensitiveCircle::Select3D_SensitiveCircle(const Handle(SelectBasics_EntityOwner)& theOwnerId,
62 const Handle(Geom_Circle)& theCircle,
63 const Standard_Boolean theIsFilled,
64 const Standard_Integer theNbPnts)
65 : Select3D_SensitivePoly (theOwnerId, !theIsFilled, GetCircleNbPoints (theCircle, theNbPnts)),
70 mySensType = theIsFilled ? Select3D_TOS_INTERIOR : Select3D_TOS_BOUNDARY;
71 if (myPolyg.Size() != 1)
75 Standard_Real anUStart = theCircle->FirstParameter();
76 Standard_Real anUEnd = theCircle->LastParameter();
77 Standard_Real aStep = (anUEnd - anUStart) / theNbPnts;
78 Standard_Real aRadius = theCircle->Radius();
79 Standard_Integer aPntIdx = 1;
80 Standard_Real aCurU = anUStart;
81 for (Standard_Integer anIndex = 1; anIndex <= theNbPnts; anIndex++)
83 theCircle->D1 (aCurU, aP1, aV1);
86 myPolyg.SetPnt (aPntIdx - 1, aP1);
88 aP2 = gp_Pnt (aP1.X() + aV1.X() * tan (aStep / 2.0) * aRadius,
89 aP1.Y() + aV1.Y() * tan (aStep / 2.0) * aRadius,
90 aP1.Z() + aV1.Z() * tan (aStep / 2.0) * aRadius);
91 myPolyg.SetPnt (aPntIdx - 1, aP2);
96 // Copy the first point to the last point of myPolyg
97 myPolyg.SetPnt (theNbPnts * 2, myPolyg.Pnt (0));
99 myCenter3D = theCircle->Location();
104 myPolyg.SetPnt (0, theCircle->Location());
106 myCenter3D = myPolyg.Pnt (0);
109 if (mySensType == Select3D_TOS_BOUNDARY)
111 SetSensitivityFactor (6.0);
115 //=======================================================================
116 //function : Select3D_SensitiveCircle (constructor)
117 //purpose : Definition of a sensitive arc
118 //=======================================================================
119 Select3D_SensitiveCircle::Select3D_SensitiveCircle (const Handle(SelectBasics_EntityOwner)& theOwnerId,
120 const Handle(Geom_Circle)& theCircle,
121 const Standard_Real theU1,
122 const Standard_Real theU2,
123 const Standard_Boolean theIsFilled,
124 const Standard_Integer theNbPnts)
125 : Select3D_SensitivePoly (theOwnerId, !theIsFilled, GetArcNbPoints (theCircle, theNbPnts)),
126 myCircle (theCircle),
127 myStart (Min (theU1, theU2)),
128 myEnd (Max (theU1, theU2))
130 mySensType = theIsFilled ? Select3D_TOS_INTERIOR : Select3D_TOS_BOUNDARY;
132 if (myPolyg.Size() != 1)
137 Standard_Real aStep = (myEnd - myStart) / (theNbPnts - 1);
138 Standard_Real aRadius = theCircle->Radius();
139 Standard_Integer aPntIdx = 1;
140 Standard_Real aCurU = myStart;
142 for (Standard_Integer anIndex = 1; anIndex <= theNbPnts - 1; anIndex++)
144 theCircle->D1 (aCurU, aP1, aV1);
146 myPolyg.SetPnt (aPntIdx - 1, aP1);
148 aP2 = gp_Pnt (aP1.X() + aV1.X() * tan (aStep /2.0) * aRadius,
149 aP1.Y() + aV1.Y() * tan (aStep /2.0) * aRadius,
150 aP1.Z() + aV1.Z() * tan (aStep /2.0) * aRadius);
151 myPolyg.SetPnt (aPntIdx - 1, aP2);
155 theCircle->D0 (myEnd, aP1);
156 myPolyg.SetPnt (theNbPnts * 2 - 2, aP1);
158 myCenter3D = theCircle->Location();
162 myPolyg.SetPnt (0, theCircle->Location());
164 myCenter3D = myPolyg.Pnt (0);
167 if (mySensType == Select3D_TOS_BOUNDARY)
169 SetSensitivityFactor (6.0);
173 //=======================================================================
174 //function : Select3D_SensitiveCircle
176 //=======================================================================
177 Select3D_SensitiveCircle::Select3D_SensitiveCircle(const Handle(SelectBasics_EntityOwner)& theOwnerId,
178 const Handle(TColgp_HArray1OfPnt)& thePnts3d,
179 const Standard_Boolean theIsFilled)
180 : Select3D_SensitivePoly (theOwnerId, thePnts3d, !theIsFilled),
184 mySensType = theIsFilled ? Select3D_TOS_INTERIOR : Select3D_TOS_BOUNDARY;
186 if (myPolyg.Size() != 1)
189 myCenter3D = myPolyg.Pnt (0);
191 if (mySensType == Select3D_TOS_BOUNDARY)
193 SetSensitivityFactor (6.0);
197 //=======================================================================
198 //function : Select3D_SensitiveCircle
200 //=======================================================================
202 Select3D_SensitiveCircle::Select3D_SensitiveCircle(const Handle(SelectBasics_EntityOwner)& theOwnerId,
203 const TColgp_Array1OfPnt& thePnts3d,
204 const Standard_Boolean theIsFilled)
205 : Select3D_SensitivePoly (theOwnerId, thePnts3d, !theIsFilled),
209 mySensType = theIsFilled ? Select3D_TOS_INTERIOR : Select3D_TOS_BOUNDARY;
211 if (myPolyg.Size() != 1)
214 myCenter3D = myPolyg.Pnt (0);
216 if (mySensType == Select3D_TOS_BOUNDARY)
218 SetSensitivityFactor (6.0);
222 //=======================================================================
224 // purpose : Builds BVH tree for a circle's edge segments if needed
225 //=======================================================================
226 void Select3D_SensitiveCircle::BVH()
228 if (mySensType == Select3D_TOS_BOUNDARY)
230 Select3D_SensitivePoly::BVH();
234 //=======================================================================
235 // function : Matches
236 // purpose : Checks whether the circle overlaps current selecting volume
237 //=======================================================================
238 Standard_Boolean Select3D_SensitiveCircle::Matches (SelectBasics_SelectingVolumeManager& theMgr,
239 SelectBasics_PickResult& thePickResult)
241 Standard_Real aDepth = RealLast();
242 Standard_Real aDistToCOG = RealLast();
244 if (mySensType == Select3D_TOS_BOUNDARY)
246 if (!Select3D_SensitivePoly::Matches (theMgr, thePickResult))
248 thePickResult = SelectBasics_PickResult (aDepth, aDistToCOG);
249 return Standard_False;
252 else if (mySensType == Select3D_TOS_INTERIOR)
254 Handle(TColgp_HArray1OfPnt) anArrayOfPnt;
255 Points3D (anArrayOfPnt);
256 if (!theMgr.IsOverlapAllowed())
258 thePickResult = SelectBasics_PickResult (aDepth, aDistToCOG);
259 for (Standard_Integer aPntIdx = anArrayOfPnt->Lower(); aPntIdx <= anArrayOfPnt->Upper(); ++aPntIdx)
261 Standard_Real aDummy;
262 if (!theMgr.Overlaps (anArrayOfPnt->Value (aPntIdx), aDummy))
263 return Standard_False;
265 return Standard_True;
268 if (!theMgr.Overlaps (anArrayOfPnt, Select3D_TOS_INTERIOR, aDepth))
270 thePickResult = SelectBasics_PickResult (aDepth, aDistToCOG);
271 return Standard_False;
276 aDistToCOG = theMgr.DistToGeometryCenter (myCenter3D);
277 thePickResult = SelectBasics_PickResult (aDepth, aDistToCOG);
278 return Standard_True;
281 void Select3D_SensitiveCircle::ArrayBounds (Standard_Integer & theLow,
282 Standard_Integer & theUp) const
285 theUp = myPolyg.Size() - 1;
288 //=======================================================================
289 //function : GetPoint3d
291 //=======================================================================
292 gp_Pnt Select3D_SensitiveCircle::GetPoint3d (const Standard_Integer thePntIdx) const
294 if (thePntIdx >= 0 && thePntIdx < myPolyg.Size())
295 return myPolyg.Pnt (thePntIdx);
300 //=======================================================================
301 //function : GetConnected
303 //=======================================================================
305 Handle(Select3D_SensitiveEntity) Select3D_SensitiveCircle::GetConnected()
307 Standard_Boolean isFilled = mySensType == Select3D_TOS_INTERIOR;
308 // Create a copy of this
309 Handle(Select3D_SensitiveEntity) aNewEntity;
310 // this was constructed using Handle(Geom_Circle)
311 if(!myCircle.IsNull())
313 if ((myEnd - myStart) > Precision::Confusion())
316 aNewEntity = new Select3D_SensitiveCircle (myOwnerId, myCircle, myStart, myEnd, isFilled);
321 aNewEntity = new Select3D_SensitiveCircle (myOwnerId, myCircle, isFilled);
324 // this was constructed using TColgp_Array1OfPnt
327 Standard_Integer aSize = myPolyg.Size();
328 TColgp_Array1OfPnt aPolyg (1, aSize);
329 for(Standard_Integer anIndex = 1; anIndex <= aSize; ++anIndex)
331 aPolyg.SetValue(anIndex, myPolyg.Pnt (anIndex-1));
333 aNewEntity = new Select3D_SensitiveCircle (myOwnerId, aPolyg, isFilled);
339 //=======================================================================
340 //function : computeCenter3D
342 //=======================================================================
343 void Select3D_SensitiveCircle::computeCenter3D()
346 Standard_Integer aNbPnts = myPolyg.Size();
349 // The mass of points system
350 Standard_Integer aMass = aNbPnts - 1;
351 // Find the circle barycenter
352 for (Standard_Integer anIndex = 0; anIndex < aNbPnts - 1; ++anIndex)
354 aCenter += myPolyg.Pnt(anIndex);
356 myCenter3D = aCenter / aMass;
360 myCenter3D = myPolyg.Pnt(0);
364 //=======================================================================
365 // function : CenterOfGeometry
366 // purpose : Returns center of the circle. If location transformation
367 // is set, it will be applied
368 //=======================================================================
369 gp_Pnt Select3D_SensitiveCircle::CenterOfGeometry() const