// Created on: 1992-05-21 // Created by: Jean Claude VAUTHIER // Copyright (c) 1992-1999 Matra Datavision // Copyright (c) 1999-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #ifndef _DrawTrSurf_Surface_HeaderFile #define _DrawTrSurf_Surface_HeaderFile #include #include #include class Geom_Surface; DEFINE_STANDARD_HANDLE(DrawTrSurf_Surface, DrawTrSurf_Drawable) //! This class defines a drawable surface. //! With this class you can draw a general surface from package Geom. class DrawTrSurf_Surface : public DrawTrSurf_Drawable { DEFINE_STANDARD_RTTIEXT(DrawTrSurf_Surface, DrawTrSurf_Drawable) Draw_Drawable3D_FACTORY public: //! default drawing mode //! Just the middle isoparametric curves are drawn. //! The boundaries are yellow, the isoparametric curves are blues. //! For the discretisation 50 points are computed in each parametric direction. Standard_EXPORT DrawTrSurf_Surface (const Handle(Geom_Surface)& S); Standard_EXPORT DrawTrSurf_Surface (const Handle(Geom_Surface)& S, const Standard_Integer Nu, const Standard_Integer Nv, const Draw_Color& BoundsColor, const Draw_Color& IsosColor, const Standard_Integer Discret, const Standard_Real Deflection, const Standard_Integer DrawMode); Draw_Color BoundsColor() const { return boundsLook; } //! rub out all the isoparametric curves. Standard_EXPORT virtual void ClearIsos(); Standard_EXPORT void DrawOn (Draw_Display& dis) const Standard_OVERRIDE; //! Iso = True : Draw the isos, the boundaries, the UVMarker. //! Iso = False: Only Draw the boundary and the UVMarker. Standard_EXPORT void DrawOn (Draw_Display& dis, const Standard_Boolean Iso) const; Handle(Geom_Surface) GetSurface() const { return surf; } Draw_Color IsosColor() const { return isosLook; } void NbIsos (Standard_Integer& theNU, Standard_Integer& theNV) const { theNU = nbUIsos; theNV = nbVIsos; } void SetBoundsColor (const Draw_Color& theColor) { boundsLook = theColor; } void SetIsosColor (const Draw_Color& theColor) { isosLook = theColor; } //! change the number of isoparametric curves to be drawn. virtual void ShowIsos (const Standard_Integer theNu, const Standard_Integer theNv) { nbUIsos = Abs(theNu); nbVIsos = Abs(theNv); } //! For variable copy. Standard_EXPORT virtual Handle(Draw_Drawable3D) Copy() const Standard_OVERRIDE; //! For variable dump. Standard_EXPORT virtual void Dump (Standard_OStream& S) const Standard_OVERRIDE; //! Save drawable into stream. Standard_EXPORT virtual void Save (Standard_OStream& theStream) const Standard_OVERRIDE; //! For variable whatis command. Standard_EXPORT virtual void Whatis (Draw_Interpretor& I) const Standard_OVERRIDE; protected: Handle(Geom_Surface) surf; Draw_Color boundsLook; Draw_Color isosLook; Standard_Integer nbUIsos; Standard_Integer nbVIsos; }; #endif // _DrawTrSurf_Surface_HeaderFile