1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-19 13:40:49 +03:00

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,78 @@
inline Standard_Integer ISession2D_Curve::NbPossibleSelection()
{
return 1;
}
inline Aspect_TypeOfLine ISession2D_Curve::GetTypeOfLine()
{
return myTypeOfLine;
}
inline void ISession2D_Curve::SetTypeOfLine(const Aspect_TypeOfLine aNewTypeOfLine)
{
myTypeOfLine = aNewTypeOfLine;
}
inline Aspect_WidthOfLine ISession2D_Curve::GetWidthOfLine()
{
return myWidthOfLine;
}
inline void ISession2D_Curve::SetWidthOfLine(const Aspect_WidthOfLine aNewWidthOfLine)
{
myWidthOfLine = aNewWidthOfLine;
}
inline Standard_Integer ISession2D_Curve::GetColorIndex()
{
return myColorIndex;
}
inline void ISession2D_Curve::SetColorIndex(const Standard_Integer aNewColorIndex)
{
myColorIndex = aNewColorIndex;
}
inline Standard_Boolean ISession2D_Curve::GetDisplayPole()
{
return myDisplayPole;
}
inline void ISession2D_Curve::SetDisplayPole(const Standard_Boolean aNewDisplayPole)
{
myDisplayPole = aNewDisplayPole;
}
inline Standard_Boolean ISession2D_Curve::GetDisplayCurbure()
{
return myDisplayCurbure;
}
inline void ISession2D_Curve::SetDisplayCurbure(const Standard_Boolean aNewDisplayCurbure)
{
myDisplayCurbure = aNewDisplayCurbure;
}
inline Standard_Real ISession2D_Curve::GetDiscretisation()
{
return myDiscretisation;
}
inline void ISession2D_Curve::SetDiscretisation(const Standard_Real aNewDiscretisation)
{
myDiscretisation = aNewDiscretisation;
}