/*===========================================================================*\ * * * OpenMesh * * Copyright (C) 2001-2015 by Computer Graphics Group, RWTH Aachen * * www.openmesh.org * * * *---------------------------------------------------------------------------* * This file is part of OpenMesh. * * * * OpenMesh is free software: you can redistribute it and/or modify * * it under the terms of the GNU Lesser General Public License as * * published by the Free Software Foundation, either version 3 of * * the License, or (at your option) any later version with the * * following exceptions: * * * * If other files instantiate templates or use macros * * or inline functions from this file, or you compile this file and * * link it with other files to produce an executable, this file does * * not by itself cause the resulting executable to be covered by the * * GNU Lesser General Public License. This exception does not however * * invalidate any other reasons why the executable file might be * * covered by the GNU Lesser General Public License. * * * * OpenMesh is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU Lesser General Public License for more details. * * * * You should have received a copy of the GNU LesserGeneral Public * * License along with OpenMesh. If not, * * see . * * * \*===========================================================================*/ /*===========================================================================*\ * * * $Revision$ * * $Date$ * * * \*===========================================================================*/ #ifndef OPENMESHAPPS_DECIMATERVIEWERWIDGET_HH #define OPENMESHAPPS_DECIMATERVIEWERWIDGET_HH //== INCLUDES ================================================================= #if !defined(OM_USE_OSG) # define OM_USE_OSG 0 #endif #include #include #include //-------------------- #include //-------------------- #if OM_USE_OSG # include # define DEFAULT_TRAITS Kernel_OSG::Traits # define TRIMESH_KERNEL Kernel_OSG::TriMesh_OSGArrayKernelT #else //-------------------- # include # include # define DEFAULT_TRAITS DefaultTraits # define TRIMESH_KERNEL TriMesh_ArrayKernelT #endif #include #include #include #include //== CLASS DEFINITION ========================================================= using namespace OpenMesh; struct MyTraits : public DEFAULT_TRAITS { VertexAttributes ( Attributes::Normal ); FaceAttributes ( Attributes::Normal ); }; typedef TRIMESH_KERNEL mesh_t; typedef MeshViewerWidgetT MeshViewerWidget; //== CLASS DEFINITION ========================================================= class DecimaterViewerWidget : public MeshViewerWidget { Q_OBJECT public: typedef MeshViewerWidget inherited_t; typedef Decimater::DecimaterT decimater_t; typedef Decimater::ModQuadricT< mesh_t >::Handle mod_quadric_t; typedef Decimater::ModNormalFlippingT< mesh_t >::Handle mod_nf_t; // object types typedef std::auto_ptr< decimater_t > decimater_o; /// default constructor DecimaterViewerWidget(QWidget* _parent=0) : MeshViewerWidget(_parent), animate_(false), timer_(0), steps_(1) { timer_ = new QTimer(this); connect( timer_, SIGNAL(timeout()), SLOT(animate()) ); } DecimaterViewerWidget() : animate_(false), timer_(0), steps_(0) { } /// destructor ~DecimaterViewerWidget() { delete timer_; } public: // inherited bool open_mesh(const char* _filename, OpenMesh::IO::Options _opt) { bool rc; if ( (rc = inherited_t::open_mesh( _filename, _opt )) ) { std::cout << "prepare decimater" << std::endl; decimater_ = decimater_o ( new decimater_t ( mesh() ) ); decimater_->add(mod_quadric_); decimater_->module(mod_quadric_).set_binary(false); decimater_->add(mod_nf_); decimater_->initialize(); } return rc; } protected slots: void animate( void ); protected: virtual void keyPressEvent(QKeyEvent* _event); private: bool animate_; QTimer *timer_; decimater_o decimater_; mod_quadric_t mod_quadric_; mod_nf_t mod_nf_; size_t steps_; }; //============================================================================= #endif // OPENMESHAPPS_DECIMATERVIEWERWIDGET_HH defined //=============================================================================