mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-14 03:13:31 +08:00
Integration of OCCT 6.5.0 from SVN
This commit is contained in:
38
src/StepVisual/StepVisual_DirectionCountSelect.cxx
Executable file
38
src/StepVisual/StepVisual_DirectionCountSelect.cxx
Executable 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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user