blob: 6ca12a581f3e9702a42e2782e7858fbaad4688f2 (
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
76
|
// File: BRepFeat_SplitShape.cxx
// Created: Mon Sep 4 10:06:40 1995
// Author: Jacques GOUSSARD
// <jag@bravox>
#include <BRepFeat_SplitShape.ixx>
#include <TopTools_ListIteratorOfListOfShape.hxx>
#include <Standard_Failure.hxx>
//=======================================================================
//function : Build
//purpose :
//=======================================================================
void BRepFeat_SplitShape::Build ()
{
mySShape.Perform(myWOnShape);
if (mySShape.IsDone()) {
Done();
myShape = mySShape.ResultingShape();
}
}
//=======================================================================
//function : DirectLeft
//purpose :
//=======================================================================
const TopTools_ListOfShape& BRepFeat_SplitShape::DirectLeft() const
{
return mySShape.DirectLeft();
}
//=======================================================================
//function : DirectLeft
//purpose :
//=======================================================================
const TopTools_ListOfShape& BRepFeat_SplitShape::Left() const
{
return mySShape.Left();
}
//=======================================================================
//function : isDeleted
//purpose :
//=======================================================================
Standard_Boolean BRepFeat_SplitShape::IsDeleted(const TopoDS_Shape& F)
{
TopTools_ListIteratorOfListOfShape itl
(((LocOpe_Spliter*) &mySShape)->DescendantShapes(F));
// tout ceci pour truander le const
return (!itl.More());// a priori impossible
}
//=======================================================================
//function : Modified
//purpose :
//=======================================================================
const TopTools_ListOfShape& BRepFeat_SplitShape::Modified
(const TopoDS_Shape& F)
{
return mySShape.DescendantShapes(F);
}
|