blob: d208a2a86db7d118e83f416539c695c1de33ff58 (
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
|
#include <IGESSelect_AddGroup.ixx>
#include <Interface_Check.hxx>
#include <Interface_EntityIterator.hxx>
#include <IGESBasic_Group.hxx>
#include <IGESData_HArray1OfIGESEntity.hxx>
#include <IGESData_IGESEntity.hxx>
#include <Interface_Macros.hxx>
IGESSelect_AddGroup::IGESSelect_AddGroup ()
: IGESSelect_ModelModifier (Standard_True) { }
void IGESSelect_AddGroup::Performing
(IFSelect_ContextModif& ctx,
const Handle(IGESData_IGESModel)& target,
Interface_CopyTool& TC) const
{
if (ctx.IsForAll()) {
ctx.CCheck(0)->AddFail ("Add Group : Selection required not defined");
return;
}
Interface_EntityIterator list = ctx.SelectedResult();
Standard_Integer i = 0 , nb = list.NbEntities();
if (nb == 0) {
ctx.CCheck(0)->AddWarning ("Add Group : No entity selected");
return;
}
if (nb == 1) {
ctx.CCheck(0)->AddWarning ("Add Group : ONE entity selected");
return;
}
Handle(IGESData_HArray1OfIGESEntity) arr =
new IGESData_HArray1OfIGESEntity(1,nb);
for (ctx.Start(); ctx.More(); ctx.Next()) {
DeclareAndCast(IGESData_IGESEntity,ent,ctx.ValueResult());
i ++;
arr->SetValue(i,ent);
}
Handle(IGESBasic_Group) gr = new IGESBasic_Group;
gr->Init (arr);
target->AddEntity(gr);
}
TCollection_AsciiString IGESSelect_AddGroup::Label () const
{ return TCollection_AsciiString ("Add Group"); }
|