Test for 0022778: Bug in BRepMesh
[occt.git] / src / GC / GC_MakeCylindricalSurface.cxx
1 // Created on: 1992-10-02
2 // Created by: Remi GILET
3 // Copyright (c) 1992-1999 Matra Datavision
4 // Copyright (c) 1999-2012 OPEN CASCADE SAS
5 //
6 // The content of this file is subject to the Open CASCADE Technology Public
7 // License Version 6.5 (the "License"). You may not use the content of this file
8 // except in compliance with the License. Please obtain a copy of the License
9 // at http://www.opencascade.org and read it completely before using this file.
10 //
11 // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12 // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13 //
14 // The Original Code and all software distributed under the License is
15 // distributed on an "AS IS" basis, without warranty of any kind, and the
16 // Initial Developer hereby disclaims all such warranties, including without
17 // limitation, any warranties of merchantability, fitness for a particular
18 // purpose or non-infringement. Please see the License for the specific terms
19 // and conditions governing the rights and limitations under the License.
20
21
22 #include <GC_MakeCylindricalSurface.ixx>
23 #include <gce_MakeCylinder.hxx>
24 #include <gp_Lin.hxx>
25 #include <StdFail_NotDone.hxx>
26
27 GC_MakeCylindricalSurface::GC_MakeCylindricalSurface(const gp_Cylinder& C)
28 {
29   TheError = gce_Done;
30   TheCylinder = new Geom_CylindricalSurface(C);
31 }
32
33 GC_MakeCylindricalSurface::GC_MakeCylindricalSurface(const gp_Ax2& A2    ,
34                                                 const Standard_Real  Radius)
35 {
36   if (Radius < 0.0) { TheError = gce_NegativeRadius; }
37   else {
38     TheError = gce_Done;
39     TheCylinder = new Geom_CylindricalSurface(A2,Radius);
40   }
41 }
42
43 //=========================================================================
44 //   Construction of a cylinder by axis <A1> et radius <Radius>.           +
45 //=========================================================================
46
47 GC_MakeCylindricalSurface::GC_MakeCylindricalSurface(const gp_Ax1& A1     ,
48                                                  const Standard_Real Radius ) 
49 {
50   gce_MakeCylinder Cyl = gce_MakeCylinder(A1,Radius);
51   TheError = Cyl.Status();
52   if (TheError == gce_Done) {
53     TheCylinder=new Geom_CylindricalSurface(Cyl.Value());
54   }
55 }
56
57 //=========================================================================
58 //   Construction of a cylinder by a circle <Cir>.                      +
59 //=========================================================================
60
61 GC_MakeCylindricalSurface::GC_MakeCylindricalSurface(const gp_Circ& Circ ) {
62   gp_Cylinder Cyl = gce_MakeCylinder(Circ);
63   TheCylinder=new Geom_CylindricalSurface(Cyl);
64   TheError = gce_Done;
65 }
66
67 //=========================================================================
68 //   Construction of a cylinder by tree points <P1>, <P2>, <P3>.         +
69 //   Two first points define the axis.                                   +
70 //   The third gives the radius.                                         +
71 //=========================================================================
72
73 GC_MakeCylindricalSurface::GC_MakeCylindricalSurface(const gp_Pnt& P1 ,
74                                                        const gp_Pnt& P2 ,
75                                                        const gp_Pnt& P3 ) {
76   gce_MakeCylinder Cyl = gce_MakeCylinder(P1,P2,P3);
77   TheError = Cyl.Status();
78   if (TheError == gce_Done) {
79     TheCylinder=new Geom_CylindricalSurface(Cyl.Value());
80   }
81 }
82
83 GC_MakeCylindricalSurface::GC_MakeCylindricalSurface(const gp_Cylinder& Cyl ,
84                                                      const Standard_Real  Dist)
85 {
86   TheError = gce_Done;
87   Standard_Real R = Abs(Cyl.Radius()-Dist);
88   TheCylinder = new Geom_CylindricalSurface(Cyl);
89   TheCylinder->SetRadius(R);
90 }
91
92 GC_MakeCylindricalSurface::GC_MakeCylindricalSurface(const gp_Cylinder& Cyl ,
93                                                        const gp_Pnt&     Point)
94 {
95   TheError = gce_Done;
96   gp_Cylinder C(Cyl);
97   gp_Lin L(C.Axis());
98   Standard_Real R = L.Distance(Point);
99   C.SetRadius(R);
100   TheCylinder = new Geom_CylindricalSurface(C);
101 }
102
103 const Handle(Geom_CylindricalSurface)& 
104        GC_MakeCylindricalSurface::Value() const
105
106   StdFail_NotDone_Raise_if(!TheError == gce_Done,"");
107   return TheCylinder;
108 }
109
110 const Handle(Geom_CylindricalSurface)& GC_MakeCylindricalSurface::Operator() const 
111 {
112   return Value();
113 }
114
115 GC_MakeCylindricalSurface::operator Handle(Geom_CylindricalSurface) () const
116 {
117   return Value();
118 }