0024624: Lost word in license statement in source files
[occt.git] / src / StepShape / StepShape_OrientedOpenShell.cxx
CommitLineData
973c2be1 1// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 2//
973c2be1 3// This file is part of Open CASCADE Technology software library.
b311480e 4//
d5f74e42 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
973c2be1 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.
b311480e 10//
973c2be1 11// Alternatively, this file may be used under the terms of Open CASCADE
12// commercial license or contractual agreement.
b311480e 13
7fd59977 14#include <StepShape_OrientedOpenShell.ixx>
15
16
17StepShape_OrientedOpenShell::StepShape_OrientedOpenShell () {}
18
19void StepShape_OrientedOpenShell::Init(
20 const Handle(TCollection_HAsciiString)& aName,
21 const Handle(StepShape_HArray1OfFace)& aCfsFaces)
22{
23
24 StepShape_ConnectedFaceSet::Init(aName, aCfsFaces);
25}
26
27void StepShape_OrientedOpenShell::Init(
28 const Handle(TCollection_HAsciiString)& aName,
29 const Handle(StepShape_OpenShell)& aOpenShellElement,
30 const Standard_Boolean aOrientation)
31{
32 // --- classe own fields ---
33 openShellElement = aOpenShellElement;
34 orientation = aOrientation;
35 // --- classe inherited fields ---
36 Handle(StepShape_HArray1OfFace) aCfsFaces;
37 aCfsFaces.Nullify();
38 StepShape_ConnectedFaceSet::Init(aName, aCfsFaces);
39}
40
41
42void StepShape_OrientedOpenShell::SetOpenShellElement(const Handle(StepShape_OpenShell)& aOpenShellElement)
43{
44 openShellElement = aOpenShellElement;
45}
46
47Handle(StepShape_OpenShell) StepShape_OrientedOpenShell::OpenShellElement() const
48{
49 return openShellElement;
50}
51
52void StepShape_OrientedOpenShell::SetOrientation(const Standard_Boolean aOrientation)
53{
54 orientation = aOrientation;
55}
56
57Standard_Boolean StepShape_OrientedOpenShell::Orientation() const
58{
59 return orientation;
60}
61
302f96fb 62void StepShape_OrientedOpenShell::SetCfsFaces(const Handle(StepShape_HArray1OfFace)& /*aCfsFaces*/)
7fd59977 63{
64 // WARNING : the field is redefined.
65 // field set up forbidden.
66 cout << "Field is redefined, SetUp Forbidden" << endl;
67}
68
69Handle(StepShape_HArray1OfFace) StepShape_OrientedOpenShell::CfsFaces() const
70{
71 // WARNING : the field is redefined.
72 // method body is not yet automaticly wrote
73 // Attention, cette modif. est juste pour la compilation
74 return openShellElement->CfsFaces();
75}
76
77Handle(StepShape_Face) StepShape_OrientedOpenShell::CfsFacesValue(const Standard_Integer num) const
78{
79 // WARNING : the field is redefined.
80 // method body is not yet automaticly wrote
81 // Attention, cette modif. est juste pour la compilation
82 return openShellElement->CfsFacesValue(num);
83}
84
85Standard_Integer StepShape_OrientedOpenShell::NbCfsFaces () const
86{
87 // WARNING : the field is redefined.
88 // method body is not yet automaticly wrote
89 // Attention, cette modif. est juste pour la compilation
90 return openShellElement->NbCfsFaces();
91}