mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
36 lines
609 B
Plaintext
Executable File
36 lines
609 B
Plaintext
Executable File
// File: Draw_Drawable3D.lxx
|
|
// Created: Tue Feb 28 13:35:31 1995
|
|
// Author: Remi LEQUETTE
|
|
// <rle@bravox>
|
|
|
|
inline Standard_Boolean Draw_Drawable3D::Visible() const
|
|
{
|
|
return isVisible;
|
|
}
|
|
|
|
inline void Draw_Drawable3D::Visible(const Standard_Boolean V)
|
|
{
|
|
isVisible = V;
|
|
}
|
|
|
|
inline Standard_Boolean Draw_Drawable3D::Protected() const
|
|
{
|
|
return isProtected;
|
|
}
|
|
|
|
inline void Draw_Drawable3D::Protected(const Standard_Boolean V)
|
|
{
|
|
isProtected = V;
|
|
}
|
|
|
|
inline Standard_CString Draw_Drawable3D::Name() const
|
|
{
|
|
return myName;
|
|
}
|
|
|
|
inline void Draw_Drawable3D::Name(const Standard_CString N)
|
|
{
|
|
myName = N;
|
|
}
|
|
|