blob: 286dffcd7622c2a3e0e782e0c3ec620b5f10ea92 (
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
|
#include <StepShape_BooleanOperand.ixx>
#include <Interface_Macros.hxx>
StepShape_BooleanOperand::StepShape_BooleanOperand () { }
Handle(StepShape_SolidModel) StepShape_BooleanOperand::SolidModel () const
{
return theSolidModel;
}
void StepShape_BooleanOperand::SetSolidModel
(const Handle(StepShape_SolidModel)& aSolidModel)
{
theSolidModel = aSolidModel;
}
Handle(StepShape_HalfSpaceSolid) StepShape_BooleanOperand::HalfSpaceSolid () const
{
return theHalfSpaceSolid;
}
void StepShape_BooleanOperand::SetHalfSpaceSolid
(const Handle(StepShape_HalfSpaceSolid)& aHalfSpaceSolid)
{
theHalfSpaceSolid = aHalfSpaceSolid;
}
StepShape_CsgPrimitive StepShape_BooleanOperand::CsgPrimitive () const
{
return theCsgPrimitive;
}
void StepShape_BooleanOperand::SetCsgPrimitive
(const StepShape_CsgPrimitive& aCsgPrimitive)
{
theCsgPrimitive = aCsgPrimitive;
}
Handle(StepShape_BooleanResult) StepShape_BooleanOperand::BooleanResult () const
{
return theBooleanResult;
}
void StepShape_BooleanOperand::SetBooleanResult
(const Handle(StepShape_BooleanResult)& aBooleanResult)
{
theBooleanResult = aBooleanResult;
}
void StepShape_BooleanOperand::SetTypeOfContent(const Standard_Integer aType)
{
theTypeOfContent = aType;
}
Standard_Integer StepShape_BooleanOperand::TypeOfContent() const
{
return theTypeOfContent;
}
|