1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-07 18:30:55 +03:00
occt/src/StepVisual/StepVisual_DirectionCountSelect.cxx
2012-03-05 19:23:40 +04:00

39 lines
900 B
C++
Executable File

#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;
}