0027961: Visualization - remove unused and no more working OpenGl_AVIWriter
[occt.git] / src / IntSurf / IntSurf_PntOn2S.cxx
1 // Copyright (c) 1995-1999 Matra Datavision
2 // Copyright (c) 1999-2014 OPEN CASCADE SAS
3 //
4 // This file is part of Open CASCADE Technology software library.
5 //
6 // This library is free software; you can redistribute it and/or modify it under
7 // the terms of the GNU Lesser General Public License version 2.1 as published
8 // by the Free Software Foundation, with special exception defined in the file
9 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10 // distribution for complete text of the license and disclaimer of any warranty.
11 //
12 // Alternatively, this file may be used under the terms of Open CASCADE
13 // commercial license or contractual agreement.
14
15
16 #include <gp_Pnt.hxx>
17 #include <IntSurf_PntOn2S.hxx>
18
19 IntSurf_PntOn2S::IntSurf_PntOn2S ()
20   : pt(0,0,0),u1(0),v1(0),u2(0),v2(0)
21 {}
22
23 void IntSurf_PntOn2S::SetValue (const gp_Pnt& Pt,
24                                 const Standard_Boolean OnFirst,
25                                 const Standard_Real U,
26                                 const Standard_Real V) {
27
28   pt = Pt;
29   if (OnFirst) {
30     u1 = U;
31     v1 = V;
32   }
33   else {
34     u2 = U;
35     v2 = V;
36   }
37 }
38
39
40 void IntSurf_PntOn2S::SetValue (const Standard_Boolean OnFirst,
41                                 const Standard_Real U,
42                                 const Standard_Real V) {
43
44   if (OnFirst) {
45     u1 = U;
46     v1 = V;
47   }
48   else {
49     u2 = U;
50     v2 = V;
51   }
52 }
53
54 gp_Pnt2d IntSurf_PntOn2S::ValueOnSurface(const Standard_Boolean OnFirst) const
55 {
56   gp_Pnt2d PointOnSurf;
57   if (OnFirst)
58     PointOnSurf.SetCoord(u1,v1);
59   else
60     PointOnSurf.SetCoord(u2,v2);
61   return PointOnSurf;
62 }
63
64 void IntSurf_PntOn2S::ParametersOnSurface(const Standard_Boolean OnFirst,
65                                           Standard_Real& U,
66                                           Standard_Real& V) const
67 {
68   if (OnFirst) {
69     U = u1;
70     V = v1;
71   }
72   else {
73     U = u2;
74     V = v2;
75   }
76 }
77
78 Standard_Boolean IntSurf_PntOn2S::IsSame( const IntSurf_PntOn2S& theOterPoint,
79                                           const Standard_Real theTol3D,
80                                           const Standard_Real theTol2D) const
81 {
82   if(pt.SquareDistance(theOterPoint.Value()) > theTol3D*theTol3D)
83     return Standard_False;
84
85   if(theTol2D < 0.0)
86   {//We need not compare 2D-coordinates of the points
87     return Standard_True;
88   }
89
90   Standard_Real aU1 = 0.0, aV1 = 0.0, aU2 = 0.0, aV2 = 0.0;
91   theOterPoint.Parameters(aU1, aV1, aU2, aV2);
92
93   gp_Pnt2d aP1(u1, v1), aP2(aU1, aV1);
94
95   if(!aP1.IsEqual(aP2, theTol2D))
96     return Standard_False;
97
98   aP1.SetCoord(u2, v2);
99   aP2.SetCoord(aU2, aV2);
100
101   if(!aP1.IsEqual(aP2, theTol2D))
102     return Standard_False;
103
104   return Standard_True;
105 }