0026167: Coding rules - eliminate -Wlogical-not-parentheses CLang warnings in GeomToStep
[occt.git] / src / GeomToStep / GeomToStep_MakeCircle.cxx
1 // Created on: 1993-06-16
2 // Created by: Martine LANGLOIS
3 // Copyright (c) 1993-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
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.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #include <GeomToStep_MakeCircle.ixx>
18 #include <GeomToStep_MakeAxis2Placement3d.hxx>
19 #include <GeomToStep_MakeAxis2Placement2d.hxx>
20 #include <StdFail_NotDone.hxx>
21 #include <gp_Circ.hxx>
22 #include <gp_Circ2d.hxx>
23 #include <Geom_Circle.hxx>
24 #include <StepGeom_Circle.hxx>
25 #include <TCollection_HAsciiString.hxx>
26 #include <UnitsMethods.hxx>
27
28 //=============================================================================
29 // Creation d' un cercle de prostep a partir d' un cercle 3d de gp
30 //=============================================================================
31
32 GeomToStep_MakeCircle::GeomToStep_MakeCircle( const gp_Circ& C)
33 {
34 #include <GeomToStep_MakeCircle_gen.pxx>
35 }
36
37
38 //=============================================================================
39 // Creation d' un cercle de prostep a partir d' un cercle de
40 // Geom
41 //=============================================================================
42
43 GeomToStep_MakeCircle::GeomToStep_MakeCircle( const Handle(Geom_Circle)& Cer)
44 {
45   gp_Circ C;
46   C = Cer->Circ();
47 #include <GeomToStep_MakeCircle_gen.pxx>
48 }
49
50
51 //=============================================================================
52 // Creation d' un cercle 2d de prostep a partir d' un cercle de
53 // Geom2d
54 //=============================================================================
55
56 GeomToStep_MakeCircle::GeomToStep_MakeCircle( const Handle(Geom2d_Circle)& Cer)
57 {
58   gp_Circ2d C2d;
59   C2d = Cer->Circ2d();
60
61   Handle(StepGeom_Circle) CStep = new StepGeom_Circle;
62   StepGeom_Axis2Placement Ax2;
63   Handle(StepGeom_Axis2Placement2d) Ax2Step;
64   Standard_Real Rayon;
65   
66   GeomToStep_MakeAxis2Placement2d MkAxis2(C2d.Position());
67   Ax2Step = MkAxis2.Value();
68   Rayon = C2d.Radius();
69   Ax2.SetValue(Ax2Step);
70   Handle(TCollection_HAsciiString) name = new TCollection_HAsciiString("");
71   CStep->Init(name, Ax2, Rayon);
72   theCircle = CStep;
73   done = Standard_True;
74
75 }
76
77 //=============================================================================
78 // renvoi des valeurs
79 //=============================================================================
80
81 const Handle(StepGeom_Circle) &
82       GeomToStep_MakeCircle::Value() const
83 {
84   StdFail_NotDone_Raise_if(!done, "");
85   return theCircle;
86 }