2015-04-28 11:54:17 +00:00
|
|
|
/* ========================================================================= *
|
2009-06-04 08:46:29 +00:00
|
|
|
* *
|
|
|
|
|
* OpenMesh *
|
2015-04-28 11:33:32 +00:00
|
|
|
* Copyright (c) 2001-2015, RWTH-Aachen University *
|
|
|
|
|
* Department for Computer Graphics and Multimedia *
|
|
|
|
|
* All rights reserved. *
|
|
|
|
|
* www.openmesh.org *
|
2009-06-04 08:46:29 +00:00
|
|
|
* *
|
2015-04-28 11:33:32 +00:00
|
|
|
*---------------------------------------------------------------------------*
|
|
|
|
|
* This file is part of OpenMesh. *
|
|
|
|
|
*---------------------------------------------------------------------------*
|
2009-06-04 08:46:29 +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-06-04 08:46:29 +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-06-04 08:46:29 +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-06-04 08:46:29 +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
|
|
|
|
|
|
|
|
/*===========================================================================*\
|
|
|
|
|
* *
|
|
|
|
|
* $Revision$ *
|
|
|
|
|
* $Date$ *
|
|
|
|
|
* *
|
|
|
|
|
\*===========================================================================*/
|
2009-02-06 13:37:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
//
|
|
|
|
|
// CLASS OSGArrayKernelT
|
|
|
|
|
//
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef OPENMESH_KERNELOSG_ARRAY_KERNEL_HH
|
|
|
|
|
#define OPENMEHS_KERNELOSG_ARRAY_KERNEL_HH
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//== INCLUDES =================================================================
|
|
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
// --------------------
|
|
|
|
|
#include <OpenMesh/Core/System/config.h>
|
|
|
|
|
#include <OpenMesh/Core/Utils/GenProg.hh>
|
2009-09-10 06:58:26 +00:00
|
|
|
#include <OpenMesh/Core/Mesh/ArrayKernel.hh>
|
2009-02-06 13:37:46 +00:00
|
|
|
// --------------------
|
|
|
|
|
#include <OpenMesh/Tools/Kernel_OSG/AttribKernelT.hh>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//== NAMESPACES ===============================================================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace OpenMesh {
|
|
|
|
|
namespace Kernel_OSG {
|
|
|
|
|
|
|
|
|
|
//== CLASS DEFINITION =========================================================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** \ingroup mesh_kernels_group
|
|
|
|
|
*
|
|
|
|
|
* Mesh kernel using arrays for mesh item storage.
|
|
|
|
|
*
|
|
|
|
|
* This mesh kernel uses the OpenSG GeoProperties as container
|
|
|
|
|
* to store the mesh items.
|
|
|
|
|
*
|
|
|
|
|
* \note You do not have to use this class directly, use the predefined
|
|
|
|
|
* mesh-kernel combinations in \ref mesh_types_group.
|
|
|
|
|
*/
|
|
|
|
|
// \see OpenMesh::ArrayHandleT
|
|
|
|
|
// \see \ref mesh_type
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <class AttribKernel, class FinalMeshItems>
|
|
|
|
|
class ArrayKernelT
|
|
|
|
|
: public OpenMesh::ArrayKernelT<AttribKernel, FinalMeshItems>
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
typedef ArrayKernelT<AttribKernel, FinalMeshItems> This;
|
|
|
|
|
typedef OpenMesh::ArrayKernelT<AttribKernel, FinalMeshItems> Base;
|
|
|
|
|
|
|
|
|
|
// attributes
|
|
|
|
|
// typedef typename Base::HasVertexNormals HasVertexNormals;
|
|
|
|
|
// typedef typename Base::HasVertexColors HasVertexColors;
|
|
|
|
|
// typedef typename Base::HasVertexTexCoords HasVertexTexCoords;
|
|
|
|
|
// typedef typename Base::HasVertexStatus HasVertexStatus;
|
|
|
|
|
typedef typename Base::HasPrevHalfedge HasPrevHalfedge;
|
|
|
|
|
// typedef typename Base::HasEdgeStatus HasEdgeStatus;
|
|
|
|
|
// typedef typename Base::HasFaceNormals HasFaceNormals;
|
|
|
|
|
// typedef typename Base::HasFaceColors HasFaceColors;
|
|
|
|
|
// typedef typename Base::HasFaceStatus HasFaceStatus;
|
|
|
|
|
|
|
|
|
|
// item types
|
|
|
|
|
typedef typename FinalMeshItems::Vertex Vertex;
|
|
|
|
|
typedef typename FinalMeshItems::Halfedge Halfedge;
|
|
|
|
|
typedef typename FinalMeshItems::Edge Edge;
|
|
|
|
|
typedef typename FinalMeshItems::Face Face;
|
|
|
|
|
typedef typename FinalMeshItems::Point Point;
|
|
|
|
|
typedef typename FinalMeshItems::Normal Normal;
|
|
|
|
|
typedef typename FinalMeshItems::Color Color;
|
|
|
|
|
typedef typename FinalMeshItems::TexCoord TexCoord;
|
|
|
|
|
typedef typename FinalMeshItems::Scalar Scalar;
|
|
|
|
|
|
|
|
|
|
// // handles
|
|
|
|
|
// typedef typename OpenMesh::VertexHandle VertexHandle;
|
|
|
|
|
// typedef typename FinalMeshItems::HalfedgeHandle HalfedgeHandle;
|
|
|
|
|
// typedef typename FinalMeshItems::EdgeHandle EdgeHandle;
|
|
|
|
|
// typedef typename FinalMeshItems::FaceHandle FaceHandle;
|
|
|
|
|
|
|
|
|
|
// iterators
|
|
|
|
|
typedef std::vector<Vertex> VertexContainer;
|
|
|
|
|
typedef std::vector<Edge> EdgeContainer;
|
|
|
|
|
typedef std::vector<Face> FaceContainer;
|
|
|
|
|
typedef typename VertexContainer::iterator KernelVertexIter;
|
|
|
|
|
typedef typename VertexContainer::const_iterator KernelConstVertexIter;
|
|
|
|
|
typedef typename EdgeContainer::iterator KernelEdgeIter;
|
|
|
|
|
typedef typename EdgeContainer::const_iterator KernelConstEdgeIter;
|
|
|
|
|
typedef typename FaceContainer::iterator KernelFaceIter;
|
|
|
|
|
typedef typename FaceContainer::const_iterator KernelConstFaceIter;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
ArrayKernelT() : Base()
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
virtual ~ArrayKernelT()
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
public: // replacements
|
|
|
|
|
|
|
|
|
|
void set_halfedge_handle(VertexHandle _vh, HalfedgeHandle _heh) {
|
|
|
|
|
Base::set_halfedge_handle( _vh, _heh );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void set_halfedge_handle(FaceHandle _fh, HalfedgeHandle _heh) {
|
|
|
|
|
Base::set_halfedge_handle( _fh, _heh );
|
|
|
|
|
osg_sync( _fh );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void set_next_halfedge_handle(HalfedgeHandle _heh, HalfedgeHandle _nheh) {
|
|
|
|
|
Base::set_next_halfedge_handle( _heh, _nheh );
|
|
|
|
|
osg_sync( face_handle( _heh ) ); // ##Changed
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void garbage_collection(bool _v=true, bool _e=true, bool _f=true);
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
bool osg_sync( FaceHandle _fh )
|
|
|
|
|
{
|
|
|
|
|
return _fh.is_valid()
|
|
|
|
|
? osg_sync( _fh, typename Face::IsTriangle() )
|
|
|
|
|
: false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
bool osg_sync( FaceHandle _fh, GenProg::Bool2Type<true> )
|
|
|
|
|
{
|
|
|
|
|
HalfedgeHandle hh( halfedge_handle(_fh) );
|
|
|
|
|
if ( !hh.is_valid() ) return false;
|
|
|
|
|
FaceHandle f1( _fh.idx() * 3 );
|
|
|
|
|
set_face_indices( f1, to_vertex_handle(hh).idx() );
|
|
|
|
|
|
|
|
|
|
hh = next_halfedge_handle(hh);
|
|
|
|
|
if ( !hh.is_valid() ) return false;
|
|
|
|
|
FaceHandle f2( f1.idx()+1 );
|
|
|
|
|
set_face_indices( f2, to_vertex_handle(hh).idx() );
|
|
|
|
|
|
|
|
|
|
hh = next_halfedge_handle(hh);
|
|
|
|
|
if ( !hh.is_valid() ) return false;
|
|
|
|
|
FaceHandle f3( f1.idx()+2 );
|
|
|
|
|
set_face_indices( f3, to_vertex_handle(hh).idx() );
|
|
|
|
|
|
|
|
|
|
set_face_types ( _fh, GL_TRIANGLES );
|
|
|
|
|
set_face_lengths( _fh, 3 );
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool osg_sync( FaceHandle _fh, GenProg::Bool2Type<false> )
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <class AttribKernel, class FinalMeshItems>
|
|
|
|
|
void
|
|
|
|
|
ArrayKernelT<AttribKernel, FinalMeshItems>::
|
|
|
|
|
garbage_collection(bool _v, bool _e, bool _f)
|
|
|
|
|
{
|
|
|
|
|
Base::garbage_collection(_v, _e, _f);
|
|
|
|
|
for (size_t fidx=0; fidx < n_faces(); ++fidx)
|
|
|
|
|
osg_sync( FaceHandle(fidx) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
} // namespace Kernel_OSG
|
|
|
|
|
} // namespace OpenMesh
|
|
|
|
|
//=============================================================================
|
|
|
|
|
#endif // OPENMESH_ARRAY_KERNEL_HH defined
|
|
|
|
|
//=============================================================================
|