Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

View File

@@ -0,0 +1,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;
}