0031668: Visualization - WebGL sample doesn't work on Emscripten 1.39
[occt.git] / src / V3d / V3d_Plane.hxx
CommitLineData
4269bd1b 1// Created by: GG
2// Copyright (c) 1991-1999 Matra Datavision
3// Copyright (c) 1999-2013 OPEN CASCADE SAS
4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
4269bd1b 6//
d5f74e42 7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
4269bd1b 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
4269bd1b 15
16#ifndef _V3d_Plane_H__
17#define _V3d_Plane_H__
18
19#include <Graphic3d_ClipPlane.hxx>
20#include <Graphic3d_Structure.hxx>
21#include <V3d_View.hxx>
22
c04c30b3 23class V3d_Plane;
25e59720 24DEFINE_STANDARD_HANDLE (V3d_Plane, Standard_Transient)
4269bd1b 25
26//! Obsolete clip plane presentation class.
27//! Ported on new core of Graphic3d_ClipPlane approach.
28//! Please access Graphic3d_ClipPlane via ClipPlane() method
29//! to use it for standard clipping workflow.
30//! Example of use:
31//! @code
32//!
33//! Handle(V3d_Plane) aPlane (0, 1, 0, -20);
34//! Handle(V3d_View) aView;
35//! aView->AddClipPlane (aPlane->ClipPlane());
36//!
37//! aPlane->Display (aView);
38//! aPlane->SetPlane (0, 1, 0, -30);
39//! aView->RemoveClipPlane (aPlane->ClipPlane());
40//!
41//! @endcode
42//! Use interface of this class to modify plane equation synchronously
43//! with clipping equation.
25e59720 44class V3d_Plane : public Standard_Transient
4269bd1b 45{
46public:
47
48 //! Creates a clipping plane from plane coefficients.
ee2be2a8 49 Standard_EXPORT V3d_Plane (const Standard_Real theA = 0.0,
50 const Standard_Real theB = 0.0,
51 const Standard_Real theC = 1.0,
52 const Standard_Real theD = 0.0);
4269bd1b 53
54 //! Change plane equation.
ee2be2a8 55 Standard_EXPORT void SetPlane (const Standard_Real theA,
56 const Standard_Real theB,
57 const Standard_Real theC,
58 const Standard_Real theD);
4269bd1b 59
60 //! Display the plane representation in the choosen view.
61 Standard_EXPORT virtual void Display (const Handle(V3d_View)& theView,
62 const Quantity_Color& theColor = Quantity_NOC_GRAY);
63
64 //! Erase the plane representation.
65 Standard_EXPORT void Erase();
66
67 //! Returns the parameters of the plane.
ee2be2a8 68 Standard_EXPORT void Plane (Standard_Real& theA,
69 Standard_Real& theB,
70 Standard_Real& theC,
71 Standard_Real& theD) const;
4269bd1b 72
ebc93ae7 73 //! Returns TRUE when the plane representation is displayed.
4269bd1b 74 Standard_EXPORT Standard_Boolean IsDisplayed() const;
75
76 //! Use this method to pass clipping plane implementation for
77 //! standard clipping workflow.
78 //! @return clipping plane implementation handle.
ebc93ae7 79 const Handle(Graphic3d_ClipPlane)& ClipPlane() const
4269bd1b 80 {
81 return myPlane;
82 }
83
84private:
85
86 //! Updates the the plane representation.
87 Standard_EXPORT void Update();
88
89protected:
90
91 Handle(Graphic3d_Structure) myGraphicStructure;
92
93private:
94
95 Handle(Graphic3d_ClipPlane) myPlane; //!< clip plane implementation.
96
97public:
98
25e59720 99 DEFINE_STANDARD_RTTIEXT(V3d_Plane,Standard_Transient)
4269bd1b 100};
101
102#endif