blob: 17cfbcc8593230620b9a364372c56237198cb2a1 (
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
|
#include <StepVisual_DirectionCountSelect.hxx>
StepVisual_DirectionCountSelect::StepVisual_DirectionCountSelect() {}
void StepVisual_DirectionCountSelect::SetTypeOfContent(const Standard_Integer aType)
{
theTypeOfContent = aType;
}
Standard_Integer StepVisual_DirectionCountSelect::TypeOfContent() const
{
return theTypeOfContent;
}
Standard_Integer StepVisual_DirectionCountSelect::UDirectionCount() const
{
return theUDirectionCount;
}
void StepVisual_DirectionCountSelect::SetUDirectionCount(const Standard_Integer aUDirectionCount)
{
theUDirectionCount = aUDirectionCount;
theTypeOfContent = 1;
}
Standard_Integer StepVisual_DirectionCountSelect::VDirectionCount() const
{
return theUDirectionCount;
}
void StepVisual_DirectionCountSelect::SetVDirectionCount(const Standard_Integer aVDirectionCount)
{
theVDirectionCount = aVDirectionCount;
theTypeOfContent = 2;
}
|