2011-04-01 18:45:05 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* VCGLib o o *
|
|
|
|
* Visual and Computer Graphics Library o o *
|
|
|
|
* _ O _ *
|
2016-06-13 07:29:25 +02:00
|
|
|
* Copyright(C) 2004-2016 \/)\/ *
|
2011-04-01 18:45:05 +02:00
|
|
|
* Visual Computing Lab /\/| *
|
|
|
|
* ISTI - Italian National Research Council | *
|
|
|
|
* \ *
|
|
|
|
* All rights reserved. *
|
|
|
|
* *
|
2013-11-25 11:01:24 +01:00
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
2011-04-01 18:45:05 +02:00
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program 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 General Public License (http://www.gnu.org/licenses/gpl.txt) *
|
|
|
|
* for more details. *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-11-25 11:01:24 +01:00
|
|
|
#ifndef __VCG_MESH_H
|
|
|
|
#define __VCG_MESH_H
|
2012-10-04 13:10:25 +02:00
|
|
|
#define __VCG_MESH
|
|
|
|
|
2017-07-27 15:55:22 +02:00
|
|
|
#include <cassert>
|
2017-03-14 22:58:18 +01:00
|
|
|
#include <cstring>
|
2017-07-27 15:55:22 +02:00
|
|
|
#include <string>
|
2017-04-02 19:52:16 +02:00
|
|
|
#include <ctime>
|
2011-04-01 18:45:05 +02:00
|
|
|
#include <vector>
|
|
|
|
#include <set>
|
2013-11-25 11:01:24 +01:00
|
|
|
#include <stack>
|
2017-03-14 07:48:48 +01:00
|
|
|
#include <queue>
|
2013-11-25 11:01:24 +01:00
|
|
|
#include <map>
|
2017-07-27 15:55:22 +02:00
|
|
|
#include <algorithm>
|
2013-11-25 11:01:24 +01:00
|
|
|
#include <iostream>
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <limits>
|
2017-08-30 17:09:00 +02:00
|
|
|
#include <iterator>
|
2017-12-07 13:52:03 +01:00
|
|
|
#include <typeindex>
|
2014-02-18 21:16:26 +01:00
|
|
|
#include <wrap/callback.h>
|
2012-10-04 13:10:25 +02:00
|
|
|
#include <vcg/complex/exception.h>
|
2011-04-01 18:45:05 +02:00
|
|
|
#include <vcg/container/simple_temporary_data.h>
|
|
|
|
#include <vcg/complex/used_types.h>
|
2012-12-06 11:59:18 +01:00
|
|
|
#include <vcg/complex/base.h>
|
2011-06-01 15:39:31 +02:00
|
|
|
#include <vcg/complex/allocate.h>
|
2017-03-13 15:50:19 +01:00
|
|
|
#include <vcg/simplex/face/pos.h>
|
|
|
|
#include <vcg/simplex/face/topology.h>
|
|
|
|
#include <vcg/simplex/edge/pos.h>
|
|
|
|
#include <vcg/simplex/edge/topology.h>
|
2018-05-04 12:08:32 +02:00
|
|
|
#include <vcg/simplex/tetrahedron/pos.h>
|
2018-05-04 18:19:54 +02:00
|
|
|
#include <vcg/simplex/tetrahedron/topology.h>
|
2017-08-30 15:57:50 +02:00
|
|
|
#include <vcg/complex/foreach.h>
|
2013-11-25 11:01:24 +01:00
|
|
|
#include <vcg/complex/algorithms/update/flag.h>
|
|
|
|
#include <vcg/complex/algorithms/update/selection.h>
|
2017-03-14 07:48:48 +01:00
|
|
|
#include <vcg/complex/algorithms/update/topology.h>
|
|
|
|
#include <vcg/complex/algorithms/update/normal.h>
|
|
|
|
#include <vcg/complex/algorithms/update/bounding.h>
|
2014-11-03 15:50:37 +01:00
|
|
|
#include <vcg/complex/algorithms/mesh_assert.h>
|
2012-10-26 01:37:25 +02:00
|
|
|
#include <vcg/complex/append.h>
|
2011-04-01 18:45:05 +02:00
|
|
|
|
2013-11-25 11:01:24 +01:00
|
|
|
#undef __VCG_MESH
|
2011-04-01 18:45:05 +02:00
|
|
|
#endif
|
|
|
|
|