blob: 4131797800b5de830c342bca8292e116061ccbf7 (
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
|
#include <IGESSelect_SelectFromSingleView.ixx>
#include <IGESData_IGESEntity.hxx>
#include <Interface_Macros.hxx>
IGESSelect_SelectFromSingleView::IGESSelect_SelectFromSingleView () { }
Interface_EntityIterator IGESSelect_SelectFromSingleView::RootResult
(const Interface_Graph& G) const
{
Interface_EntityIterator list;
Interface_EntityIterator views = InputResult(G);
if (views.NbEntities() == 0) return list;
Standard_Integer nb = G.Size();
char* nums = new char[nb+1];
Standard_Integer i; // svv Jan11 2000 : porting on DEC
for (i = 1; i <= nb; i ++) nums[i] = 0;
for (views.Start(); views.More(); views.Next()) {
Standard_Integer nv = G.EntityNumber(views.Value());
if (nv > 0 && nv <= nb) nums[nv] = 1;
}
for (i = 1; i <= nb; i ++) {
// if (!G.IsPresent(i)) continue;
DeclareAndCast(IGESData_IGESEntity,igesent,G.Entity(i));
if (igesent.IsNull()) continue;
Standard_Integer nv = G.EntityNumber (igesent->View());
if (nv > 0 && nv <= nb) list.GetOneItem(igesent);
}
delete [] nums;
return list;
}
TCollection_AsciiString IGESSelect_SelectFromSingleView::Label () const
{ return TCollection_AsciiString ("Entities attached to a single View"); }
|