summaryrefslogtreecommitdiff
path: root/src/TransferBRep/TransferBRep_ShapeListBinder.cxx
blob: ecf8a49897b1b3da4166bec4f069af81cb981784 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include  <TransferBRep_ShapeListBinder.ixx>
#include  <TopoDS.hxx>

    TransferBRep_ShapeListBinder::TransferBRep_ShapeListBinder  ()
      {  theres = new TopTools_HSequenceOfShape();  }

    TransferBRep_ShapeListBinder::TransferBRep_ShapeListBinder
  (const Handle(TopTools_HSequenceOfShape)& list)
      {  theres = list;  }

    Standard_Boolean  TransferBRep_ShapeListBinder::IsMultiple () const
      {  return (NbShapes() > 1);  }

    Handle(Standard_Type)  TransferBRep_ShapeListBinder::ResultType () const
      {  return STANDARD_TYPE(TransferBRep_ShapeListBinder);  }

    Standard_CString  TransferBRep_ShapeListBinder::ResultTypeName () const
      {  return "list(TopoDS_Shape)";  }


    void  TransferBRep_ShapeListBinder::AddResult (const TopoDS_Shape& shape)
      {  theres->Append(shape);  }

    Handle(TopTools_HSequenceOfShape) TransferBRep_ShapeListBinder::Result
  () const
      {  return theres;  }

    void  TransferBRep_ShapeListBinder::SetResult
  (const Standard_Integer num, const TopoDS_Shape& shape)
      {  theres->SetValue(num,shape);  }

    Standard_Integer  TransferBRep_ShapeListBinder::NbShapes () const
      {  return theres->Length();  }

    const TopoDS_Shape&  TransferBRep_ShapeListBinder::Shape
  (const Standard_Integer num) const
      {  return theres->Value(num);  }

    TopAbs_ShapeEnum  TransferBRep_ShapeListBinder::ShapeType
  (const Standard_Integer num) const
      {  return theres->Value(num).ShapeType();  }

    TopoDS_Vertex  TransferBRep_ShapeListBinder::Vertex
  (const Standard_Integer num) const
      {  return TopoDS::Vertex(theres->Value(num));  }

    TopoDS_Edge    TransferBRep_ShapeListBinder::Edge
  (const Standard_Integer num) const
      {  return TopoDS::Edge(theres->Value(num));  }

    TopoDS_Wire    TransferBRep_ShapeListBinder::Wire
  (const Standard_Integer num) const
      {  return TopoDS::Wire(theres->Value(num));  }

    TopoDS_Face    TransferBRep_ShapeListBinder::Face
  (const Standard_Integer num) const
      {  return TopoDS::Face(theres->Value(num));  }

    TopoDS_Shell   TransferBRep_ShapeListBinder::Shell
  (const Standard_Integer num) const
      {  return TopoDS::Shell(theres->Value(num));  }

    TopoDS_Solid   TransferBRep_ShapeListBinder::Solid
  (const Standard_Integer num) const
      {  return TopoDS::Solid(theres->Value(num));  }

    TopoDS_CompSolid  TransferBRep_ShapeListBinder::CompSolid
  (const Standard_Integer num) const
      {  return TopoDS::CompSolid(theres->Value(num));  }

    TopoDS_Compound  TransferBRep_ShapeListBinder::Compound
  (const Standard_Integer num) const
      {  return TopoDS::Compound(theres->Value(num));  }