blob: 7f056095b29d02cd6817c049b15661e6f820dea4 (
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
|
#include <StepShape_BooleanResult.ixx>
StepShape_BooleanResult::StepShape_BooleanResult () {}
void StepShape_BooleanResult::Init(
const Handle(TCollection_HAsciiString)& aName)
{
StepRepr_RepresentationItem::Init(aName);
}
void StepShape_BooleanResult::Init(
const Handle(TCollection_HAsciiString)& aName,
const StepShape_BooleanOperator aOperator,
const StepShape_BooleanOperand& aFirstOperand,
const StepShape_BooleanOperand& aSecondOperand)
{
// --- classe own fields ---
anOperator = aOperator;
firstOperand = aFirstOperand;
secondOperand = aSecondOperand;
// --- classe inherited fields ---
StepRepr_RepresentationItem::Init(aName);
}
void StepShape_BooleanResult::SetOperator(const StepShape_BooleanOperator aOperator)
{
anOperator = aOperator;
}
StepShape_BooleanOperator StepShape_BooleanResult::Operator() const
{
return anOperator;
}
void StepShape_BooleanResult::SetFirstOperand(const StepShape_BooleanOperand& aFirstOperand)
{
firstOperand = aFirstOperand;
}
StepShape_BooleanOperand StepShape_BooleanResult::FirstOperand() const
{
return firstOperand;
}
void StepShape_BooleanResult::SetSecondOperand(const StepShape_BooleanOperand& aSecondOperand)
{
secondOperand = aSecondOperand;
}
StepShape_BooleanOperand StepShape_BooleanResult::SecondOperand() const
{
return secondOperand;
}
|