# libraries to link to
SET(_link_LIBRARIES
${OPENGL_LIBRARIES} ${QT_LIBRARIES} ${CAS_KERNEL} ${CAS_VIEWER}
- CASCatch qtx suit OpenGLUtils ViewerTools
+ CASCatch qtx suit OpenGLUtils ViewerTools ViewerData
)
# --- headers ---
Distance = other.Distance;
Rotation1 = other.Rotation1;
Rotation2 = other.Rotation2;
+ return *this;
}
OCCViewer_ClipPlane::OCCViewer_ClipPlane() :
IsInvert = other.IsInvert;
PlaneMode = other.PlaneMode;
IsOn = other.IsOn;
+ return *this;
}
#include <Standard.hxx>
#include <Standard_DefineHandle.hxx>
-class ViewerData_AISShape : public AIS_TexturedShape
+class ViewerData_AISShape : public AIS_TexturedShape
{
public:
Standard_EXPORT ViewerData_AISShape (const TopoDS_Shape& theShape);
// checks if shape is clippable
- inline bool IsClippable() const
+ Standard_EXPORT inline bool IsClippable() const
{
return myIsClippable;
}
// makes shape clippable/not clippable
- inline void SetClippable (bool isClippable)
+ Standard_EXPORT inline void SetClippable (bool isClippable)
{
myIsClippable = isClippable;
}