1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-13 14:27:08 +03:00

0027750: Visualization, V3d_View - remove unused functionality ZClipping and ZCueing

Methods V3d_View::SetZClippingType(), ::SetZClippingDepth(), ::SetZClippingWidth(),
::SetZCueingDepth(), ::SetZCueingWidth(), ::SetZCueingOn(), ::SetZCueingOff()
have been removed.
This commit is contained in:
kgv
2016-08-03 22:08:01 +03:00
committed by bugmaster
parent 4ad142d9cb
commit 89a929ea26
43 changed files with 30 additions and 1685 deletions

View File

@@ -77,7 +77,6 @@
#include <V3d_TypeOfShadingModel.hxx>
#include <V3d_TypeOfView.hxx>
#include <V3d_TypeOfVisualization.hxx>
#include <V3d_TypeOfZclipping.hxx>
#include <V3d_Viewer.hxx>
#include <V3d_ViewerPointer.hxx>
@@ -263,27 +262,6 @@ public:
//! Defines the visualization type in the view.
Standard_EXPORT void SetVisualization (const V3d_TypeOfVisualization theType);
//! Defines the depth of the medium clipping plane.
Standard_EXPORT void SetZClippingDepth (const Quantity_Length theDepth);
//! Defines the thickness around the medium clipping plane.
Standard_EXPORT void SetZClippingWidth (const Quantity_Length theWidth);
//! Defines the type of ZClipping.
Standard_EXPORT void SetZClippingType (const V3d_TypeOfZclipping theType);
//! Defines the depth of the medium plane.
Standard_EXPORT void SetZCueingDepth (const Quantity_Length theDepth);
//! Defines the thickness around the medium plane.
Standard_EXPORT void SetZCueingWidth (const Quantity_Length theWidth);
//! Activates ZCueing in the view.
Standard_EXPORT void SetZCueingOn();
//! Deactivates ZCueing in the view.
Standard_EXPORT void SetZCueingOff();
//! Activates theLight in the view.
Standard_EXPORT void SetLightOn (const Handle(V3d_Light)& theLight);
@@ -714,20 +692,6 @@ public:
//! Returns the current visualisation mode.
Standard_EXPORT V3d_TypeOfVisualization Visualization() const;
//! Returns activity and information on the Zcueing.
//! <Depth> : Depth of plane.
//! <Width> : Thickness around the plane.
Standard_EXPORT Standard_Boolean ZCueing (Quantity_Length& theDepth, Quantity_Length& theWidth) const;
//! Returns current information on the ZClipping.
//! <Depth> : Depth of plane.
//! <Width> : Thickness around the plane.
//! <TypeOfZclipping> : "BACK"
//! "FRONT"
//! "SLICE"
//! "OFF"
Standard_EXPORT V3d_TypeOfZclipping ZClipping (Quantity_Length& theDepth, Quantity_Length& theWidth) const;
//! Returns True if One light more can be
//! activated in this View.
Standard_EXPORT Standard_Boolean IfMoreLights() const;