2015-04-28 11:54:17 +00:00
|
|
|
/* ========================================================================= *
|
2009-02-17 11:58:56 +00:00
|
|
|
* *
|
|
|
|
|
* OpenMesh *
|
2023-03-01 13:03:33 +01:00
|
|
|
* Copyright (c) 2001-2023, RWTH-Aachen University *
|
2015-04-28 13:07:46 +00:00
|
|
|
* Department of Computer Graphics and Multimedia *
|
2015-04-28 11:33:32 +00:00
|
|
|
* All rights reserved. *
|
|
|
|
|
* www.openmesh.org *
|
2009-02-17 11:58:56 +00:00
|
|
|
* *
|
2015-04-28 11:33:32 +00:00
|
|
|
*---------------------------------------------------------------------------*
|
|
|
|
|
* This file is part of OpenMesh. *
|
|
|
|
|
*---------------------------------------------------------------------------*
|
2009-02-17 11:58:56 +00:00
|
|
|
* *
|
2015-04-28 11:33:32 +00:00
|
|
|
* Redistribution and use in source and binary forms, with or without *
|
|
|
|
|
* modification, are permitted provided that the following conditions *
|
|
|
|
|
* are met: *
|
2009-02-17 11:58:56 +00:00
|
|
|
* *
|
2015-04-28 11:33:32 +00:00
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, *
|
|
|
|
|
* this list of conditions and the following disclaimer. *
|
2009-02-17 11:58:56 +00:00
|
|
|
* *
|
2015-04-28 11:33:32 +00:00
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright *
|
|
|
|
|
* notice, this list of conditions and the following disclaimer in the *
|
|
|
|
|
* documentation and/or other materials provided with the distribution. *
|
2009-02-17 11:58:56 +00:00
|
|
|
* *
|
2015-04-28 11:33:32 +00:00
|
|
|
* 3. Neither the name of the copyright holder nor the names of its *
|
|
|
|
|
* contributors may be used to endorse or promote products derived from *
|
|
|
|
|
* this software without specific prior written permission. *
|
2009-06-04 08:46:29 +00:00
|
|
|
* *
|
2015-04-28 11:33:32 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS *
|
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED *
|
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
|
|
|
|
|
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER *
|
|
|
|
|
* OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, *
|
|
|
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, *
|
|
|
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR *
|
|
|
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF *
|
|
|
|
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING *
|
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS *
|
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
|
2015-04-28 11:54:17 +00:00
|
|
|
* *
|
|
|
|
|
* ========================================================================= */
|
2009-06-04 08:46:29 +00:00
|
|
|
|
2019-01-15 11:21:12 +01:00
|
|
|
|
2009-02-17 11:58:56 +00:00
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
//
|
|
|
|
|
// CLASS newClass
|
|
|
|
|
//
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef OPENMESH_VDPROGMESH_VDPMSYNTHESIZERVIEWERWIDGET_HH
|
|
|
|
|
#define OPENMESH_VDPROGMESH_VDPMSYNTHESIZERVIEWERWIDGET_HH
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//== INCLUDES =================================================================
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <QTimer>
|
|
|
|
|
|
|
|
|
|
#include <OpenMesh/Core/IO/MeshIO.hh>
|
|
|
|
|
#include <OpenMesh/Core/Mesh/TriMesh_ArrayKernelT.hh>
|
|
|
|
|
#include <OpenMesh/Apps/QtViewer/MeshViewerWidgetT.hh>
|
|
|
|
|
|
|
|
|
|
#include <OpenMesh/Tools/VDPM/MeshTraits.hh>
|
|
|
|
|
#include <OpenMesh/Tools/VDPM/StreamingDef.hh>
|
|
|
|
|
#include <OpenMesh/Tools/VDPM/ViewingParameters.hh>
|
|
|
|
|
#include <OpenMesh/Tools/VDPM/VHierarchy.hh>
|
|
|
|
|
#include <OpenMesh/Tools/VDPM/VFront.hh>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//== FORWARDDECLARATIONS ======================================================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//== NAMESPACES ===============================================================
|
|
|
|
|
|
|
|
|
|
namespace OpenMesh {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//== CLASS DEFINITION =========================================================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef TriMesh_ArrayKernelT<VDPM::MeshTraits> VDPMMesh;
|
|
|
|
|
typedef MeshViewerWidgetT<VDPMMesh> MeshViewerWidget;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// using view dependent progressive mesh
|
|
|
|
|
|
|
|
|
|
using VDPM::Plane3d;
|
|
|
|
|
using VDPM::VFront;
|
|
|
|
|
using VDPM::VHierarchy;
|
|
|
|
|
using VDPM::VHierarchyNode;
|
|
|
|
|
using VDPM::VHierarchyNodeIndex;
|
|
|
|
|
using VDPM::VHierarchyNodeHandle;
|
|
|
|
|
using VDPM::VHierarchyNodeHandleContainer;
|
|
|
|
|
using VDPM::ViewingParameters;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//== CLASS DEFINITION =========================================================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class VDPMSynthesizerViewerWidget : public MeshViewerWidget
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
typedef MeshViewerWidget Base;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
2012-01-16 09:31:24 +00:00
|
|
|
VDPMSynthesizerViewerWidget(QWidget* _parent=0, const char* _name=0);
|
2009-02-17 11:58:56 +00:00
|
|
|
|
2012-01-16 09:31:24 +00:00
|
|
|
~VDPMSynthesizerViewerWidget();
|
2009-02-17 11:58:56 +00:00
|
|
|
|
|
|
|
|
/// open view-dependent progressive mesh
|
|
|
|
|
void open_vd_prog_mesh(const char* _filename);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
QString qFilename_;
|
|
|
|
|
VHierarchy vhierarchy_;
|
|
|
|
|
VFront vfront_;
|
|
|
|
|
ViewingParameters viewing_parameters_;
|
|
|
|
|
float kappa_square_;
|
|
|
|
|
bool adaptive_mode_;
|
|
|
|
|
|
|
|
|
|
unsigned int n_base_vertices_;
|
|
|
|
|
unsigned int n_base_edges_;
|
|
|
|
|
unsigned int n_base_faces_;
|
|
|
|
|
unsigned int n_details_;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
bool outside_view_frustum(const OpenMesh::Vec3f &pos, float radius);
|
|
|
|
|
|
|
|
|
|
bool oriented_away(float sin_square,
|
|
|
|
|
float distance_square,
|
|
|
|
|
float product_value);
|
|
|
|
|
|
|
|
|
|
bool screen_space_error(float mue_square,
|
|
|
|
|
float sigma_square,
|
|
|
|
|
float distance_square,
|
|
|
|
|
float product_value);
|
|
|
|
|
|
|
|
|
|
void update_viewing_parameters();
|
|
|
|
|
|
|
|
|
|
virtual void keyPressEvent(QKeyEvent* _event);
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
/// inherited drawing method
|
|
|
|
|
virtual void draw_scene(const std::string& _draw_mode);
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
void adaptive_refinement();
|
|
|
|
|
|
|
|
|
|
bool qrefine(VHierarchyNodeHandle _node_handle);
|
|
|
|
|
|
|
|
|
|
void force_vsplit(VHierarchyNodeHandle _node_handle);
|
|
|
|
|
|
|
|
|
|
bool ecol_legal(VHierarchyNodeHandle _parent_handle,
|
|
|
|
|
VDPMMesh::HalfedgeHandle& v0v1);
|
|
|
|
|
|
|
|
|
|
void get_active_cuts(VHierarchyNodeHandle _node_handle,
|
|
|
|
|
VDPMMesh::VertexHandle &vl, VDPMMesh::VertexHandle &vr);
|
|
|
|
|
|
|
|
|
|
void vsplit(VHierarchyNodeHandle _node_handle,
|
|
|
|
|
VDPMMesh::VertexHandle vl, VDPMMesh::VertexHandle vr);
|
|
|
|
|
|
|
|
|
|
void ecol(VHierarchyNodeHandle _parent_handle,
|
|
|
|
|
const VDPMMesh::HalfedgeHandle& v0v1);
|
|
|
|
|
|
|
|
|
|
void init_vfront();
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
} // namespace OpenMesh
|
|
|
|
|
//=============================================================================
|
|
|
|
|
#endif // OPENMESHAPPS_VDPMSYNTHESIZERVIEWERWIDGET_HH defined
|
|
|
|
|
//=============================================================================
|