blob: 62d28060b339df48aeb3efe60de33ad8dd9753fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
//--------------------------------------------------------------------
//
// File Name : IGESSolid_SolidAssembly.cxx
// Date :
// Author : CKY / Contract Toubro-Larsen
// Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------
#include <IGESSolid_SolidAssembly.ixx>
IGESSolid_SolidAssembly::IGESSolid_SolidAssembly () { }
void IGESSolid_SolidAssembly::Init
(const Handle(IGESData_HArray1OfIGESEntity)& Items,
const Handle(IGESGeom_HArray1OfTransformationMatrix)& Matrices)
{
if (Items->Lower() != 1 || Matrices->Lower() != 1 ||
Items->Length() != Matrices->Length())
Standard_DimensionError::Raise("IGESSolid_SolidAssembly : Init");
theItems = Items;
theMatrices = Matrices;
InitTypeAndForm(184,0);
}
Standard_Boolean IGESSolid_SolidAssembly::HasBrep () const
{ return (FormNumber() == 1); }
void IGESSolid_SolidAssembly::SetBrep (const Standard_Boolean hasbrep)
{ InitTypeAndForm(184, (hasbrep ? 1 : 0)); }
Standard_Integer IGESSolid_SolidAssembly::NbItems () const
{
return theItems->Length();
}
Handle(IGESData_IGESEntity) IGESSolid_SolidAssembly::Item
(const Standard_Integer Index) const
{
return theItems->Value(Index);
}
Handle(IGESGeom_TransformationMatrix) IGESSolid_SolidAssembly::TransfMatrix
(const Standard_Integer Index) const
{
return theMatrices->Value(Index);
}
|