0030686: Visualization, SelectMgr_ViewerSelector - sorting issues of transformation...
[occt.git] / src / StepGeom / StepGeom_SurfaceCurve.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 <Standard_Type.hxx>
16 #include <StepGeom_Curve.hxx>
17 #include <StepGeom_PcurveOrSurface.hxx>
18 #include <StepGeom_SurfaceCurve.hxx>
19 #include <TCollection_HAsciiString.hxx>
20
21 IMPLEMENT_STANDARD_RTTIEXT(StepGeom_SurfaceCurve,StepGeom_Curve)
22
23 StepGeom_SurfaceCurve::StepGeom_SurfaceCurve ()  {}
24
25 void StepGeom_SurfaceCurve::Init(
26         const Handle(TCollection_HAsciiString)& aName,
27         const Handle(StepGeom_Curve)& aCurve3d,
28         const Handle(StepGeom_HArray1OfPcurveOrSurface)& aAssociatedGeometry,
29         const StepGeom_PreferredSurfaceCurveRepresentation aMasterRepresentation)
30 {
31         // --- classe own fields ---
32         curve3d = aCurve3d;
33         associatedGeometry = aAssociatedGeometry;
34         masterRepresentation = aMasterRepresentation;
35         // --- classe inherited fields ---
36         StepRepr_RepresentationItem::Init(aName);
37 }
38
39
40 void StepGeom_SurfaceCurve::SetCurve3d(const Handle(StepGeom_Curve)& aCurve3d)
41 {
42         curve3d = aCurve3d;
43 }
44
45 Handle(StepGeom_Curve) StepGeom_SurfaceCurve::Curve3d() const
46 {
47         return curve3d;
48 }
49
50 void StepGeom_SurfaceCurve::SetAssociatedGeometry(const Handle(StepGeom_HArray1OfPcurveOrSurface)& aAssociatedGeometry)
51 {
52         associatedGeometry = aAssociatedGeometry;
53 }
54
55 Handle(StepGeom_HArray1OfPcurveOrSurface) StepGeom_SurfaceCurve::AssociatedGeometry() const
56 {
57         return associatedGeometry;
58 }
59
60 StepGeom_PcurveOrSurface StepGeom_SurfaceCurve::AssociatedGeometryValue(const Standard_Integer num) const
61 {
62         return associatedGeometry->Value(num);
63 }
64
65 Standard_Integer StepGeom_SurfaceCurve::NbAssociatedGeometry () const
66 {
67         return associatedGeometry->Length();
68 }
69
70 void StepGeom_SurfaceCurve::SetMasterRepresentation(const StepGeom_PreferredSurfaceCurveRepresentation aMasterRepresentation)
71 {
72         masterRepresentation = aMasterRepresentation;
73 }
74
75 StepGeom_PreferredSurfaceCurveRepresentation StepGeom_SurfaceCurve::MasterRepresentation() const
76 {
77         return masterRepresentation;
78 }