0033039: Coding - get rid of unused headers [StepData to StlAPI]
[occt.git] / src / StepShape / StepShape_RightCircularCylinder.cxx
1 // Copyright (c) 1999-2014 OPEN CASCADE SAS
2 //
3 // This file is part of Open CASCADE Technology software library.
4 //
5 // This library is free software; you can redistribute it and/or modify it under
6 // the terms of the GNU Lesser General Public License version 2.1 as published
7 // by the Free Software Foundation, with special exception defined in the file
8 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9 // distribution for complete text of the license and disclaimer of any warranty.
10 //
11 // Alternatively, this file may be used under the terms of Open CASCADE
12 // commercial license or contractual agreement.
13
14
15 #include <StepGeom_Axis1Placement.hxx>
16 #include <StepShape_RightCircularCylinder.hxx>
17 #include <TCollection_HAsciiString.hxx>
18
19 IMPLEMENT_STANDARD_RTTIEXT(StepShape_RightCircularCylinder,StepGeom_GeometricRepresentationItem)
20
21 StepShape_RightCircularCylinder::StepShape_RightCircularCylinder ()  {}
22
23 void StepShape_RightCircularCylinder::Init(
24         const Handle(TCollection_HAsciiString)& aName,
25         const Handle(StepGeom_Axis1Placement)& aPosition,
26         const Standard_Real aHeight,
27         const Standard_Real aRadius)
28 {
29         // --- classe own fields ---
30         position = aPosition;
31         height = aHeight;
32         radius = aRadius;
33         // --- classe inherited fields ---
34         StepRepr_RepresentationItem::Init(aName);
35 }
36
37
38 void StepShape_RightCircularCylinder::SetPosition(const Handle(StepGeom_Axis1Placement)& aPosition)
39 {
40         position = aPosition;
41 }
42
43 Handle(StepGeom_Axis1Placement) StepShape_RightCircularCylinder::Position() const
44 {
45         return position;
46 }
47
48 void StepShape_RightCircularCylinder::SetHeight(const Standard_Real aHeight)
49 {
50         height = aHeight;
51 }
52
53 Standard_Real StepShape_RightCircularCylinder::Height() const
54 {
55         return height;
56 }
57
58 void StepShape_RightCircularCylinder::SetRadius(const Standard_Real aRadius)
59 {
60         radius = aRadius;
61 }
62
63 Standard_Real StepShape_RightCircularCylinder::Radius() const
64 {
65         return radius;
66 }