0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[occt.git] / src / IGESGeom / IGESGeom_Boundary.cxx
1 // Created by: CKY / Contract Toubro-Larsen
2 // Copyright (c) 1993-1999 Matra Datavision
3 // Copyright (c) 1999-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 //--------------------------------------------------------------------
17 //--------------------------------------------------------------------
18
19 #include <IGESBasic_HArray1OfHArray1OfIGESEntity.hxx>
20 #include <IGESData_IGESEntity.hxx>
21 #include <IGESGeom_Boundary.hxx>
22 #include <Standard_DimensionMismatch.hxx>
23 #include <Standard_OutOfRange.hxx>
24 #include <Standard_Type.hxx>
25
26 IMPLEMENT_STANDARD_RTTIEXT(IGESGeom_Boundary,IGESData_IGESEntity)
27
28 IGESGeom_Boundary::IGESGeom_Boundary ()    {  }
29
30
31     void  IGESGeom_Boundary::Init
32   (const Standard_Integer aType,
33    const Standard_Integer aPreference,
34    const Handle(IGESData_IGESEntity)& aSurface,
35    const Handle(IGESData_HArray1OfIGESEntity)& allModelCurves,
36    const Handle(TColStd_HArray1OfInteger)& allSenses,
37    const Handle(IGESBasic_HArray1OfHArray1OfIGESEntity)& allParameterCurves)
38 {
39   Standard_Integer num1 = allSenses->Length();
40   if ( allSenses->Lower()          != 1 ||
41       (allModelCurves->Lower()     != 1 || allModelCurves->Length() != num1) ||
42       (allParameterCurves->Lower() != 1 || allParameterCurves->Length() != num1))
43     throw Standard_DimensionMismatch("IGESGeom_Boundary: Init");
44
45   theType            = aType;
46   thePreference      = aPreference;
47   theSurface         = aSurface;
48   theModelCurves     = allModelCurves;
49   theSenses          = allSenses;
50   theParameterCurves = allParameterCurves;
51   InitTypeAndForm(141,0);
52 }
53
54
55     Standard_Integer  IGESGeom_Boundary::BoundaryType () const
56 {
57   return theType;
58 }
59
60     Standard_Integer  IGESGeom_Boundary::PreferenceType () const
61 {
62   return thePreference;
63 }
64
65     Handle(IGESData_IGESEntity)  IGESGeom_Boundary::Surface () const
66 {
67   return theSurface;
68 }
69
70     Standard_Integer  IGESGeom_Boundary::NbModelSpaceCurves () const
71 {
72   return theModelCurves->Length();
73 }
74
75     Standard_Integer  IGESGeom_Boundary::Sense (const Standard_Integer Index) const
76 {
77   return theSenses->Value(Index);
78 }
79
80     Handle(IGESData_IGESEntity)  IGESGeom_Boundary::ModelSpaceCurve
81   (const Standard_Integer Index) const
82 {
83   return theModelCurves->Value(Index);
84 }
85
86     Standard_Integer  IGESGeom_Boundary::NbParameterCurves
87   (const Standard_Integer Index) const
88 {
89   if (theParameterCurves->Value(Index).IsNull()) return 0;
90   return  theParameterCurves->Value(Index)->Length();
91 }
92
93     Handle(IGESData_HArray1OfIGESEntity)  IGESGeom_Boundary::ParameterCurves
94   (const Standard_Integer Index) const
95 {
96   return theParameterCurves->Value(Index);
97 }
98
99     Handle(IGESData_IGESEntity)  IGESGeom_Boundary::ParameterCurve
100   (const Standard_Integer Index, const Standard_Integer Num) const
101 {
102   return theParameterCurves->Value(Index)->Value(Num);
103 }