2012-11-19 20:40:08 +00:00
|
|
|
/*
|
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify 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 for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* Contributor(s): Antony Riakiotakis
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file blender/modifiers/intern/MOD_triangulate.c
|
|
|
|
* \ingroup modifiers
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "DNA_object_types.h"
|
|
|
|
|
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
|
|
|
|
#include "BKE_cdderivedmesh.h"
|
|
|
|
#include "BKE_modifier.h"
|
|
|
|
#include "BKE_tessmesh.h"
|
|
|
|
|
|
|
|
/* triangulation modifier, directly calls the bmesh operator */
|
|
|
|
|
2012-11-19 23:52:24 +00:00
|
|
|
static DerivedMesh *triangulate_dm(DerivedMesh *dm, const int flag)
|
2012-11-19 20:40:08 +00:00
|
|
|
{
|
|
|
|
DerivedMesh *result;
|
|
|
|
BMesh *bm;
|
|
|
|
|
|
|
|
bm = DM_to_bmesh(dm);
|
2012-11-19 23:52:24 +00:00
|
|
|
|
2012-11-19 23:33:02 +00:00
|
|
|
BM_mesh_elem_toolflags_ensure(bm);
|
2012-11-19 20:40:08 +00:00
|
|
|
BMO_push(bm, NULL);
|
|
|
|
|
2012-11-19 23:52:24 +00:00
|
|
|
BMO_op_callf(bm, BMO_FLAG_DEFAULTS,
|
|
|
|
"triangulate faces=%af use_beauty=%b",
|
|
|
|
(flag & MOD_TRIANGULATE_BEAUTY));
|
2012-11-19 20:40:08 +00:00
|
|
|
BMO_pop(bm);
|
|
|
|
|
|
|
|
result = CDDM_from_bmesh(bm, FALSE);
|
|
|
|
BM_mesh_free(bm);
|
|
|
|
|
|
|
|
CDDM_calc_edges(result);
|
2012-11-19 23:52:24 +00:00
|
|
|
|
2012-11-19 20:40:08 +00:00
|
|
|
CDDM_calc_normals(result);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void initData(ModifierData *md)
|
|
|
|
{
|
|
|
|
TriangulateModifierData *tmd = (TriangulateModifierData *)md;
|
|
|
|
|
|
|
|
/* Enable in editmode by default */
|
|
|
|
md->mode |= eModifierMode_Editmode;
|
2012-11-19 23:52:24 +00:00
|
|
|
tmd->flag = MOD_TRIANGULATE_BEAUTY;
|
2012-11-19 20:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void copyData(ModifierData *md, ModifierData *target)
|
|
|
|
{
|
|
|
|
TriangulateModifierData *smd = (TriangulateModifierData *) md;
|
|
|
|
TriangulateModifierData *tsmd = (TriangulateModifierData *) target;
|
|
|
|
|
|
|
|
*tsmd = *smd;
|
|
|
|
}
|
|
|
|
|
|
|
|
static DerivedMesh *applyModifierEM(ModifierData *md,
|
|
|
|
Object *UNUSED(ob),
|
|
|
|
struct BMEditMesh *UNUSED(em),
|
|
|
|
DerivedMesh *dm)
|
|
|
|
{
|
|
|
|
TriangulateModifierData *tmd = (TriangulateModifierData *)md;
|
|
|
|
DerivedMesh *result;
|
2012-11-19 23:52:24 +00:00
|
|
|
if (!(result = triangulate_dm(dm, tmd->flag))) {
|
2012-11-19 20:40:08 +00:00
|
|
|
return dm;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static DerivedMesh *applyModifier(ModifierData *md,
|
|
|
|
Object *UNUSED(ob),
|
|
|
|
DerivedMesh *dm,
|
|
|
|
ModifierApplyFlag UNUSED(flag))
|
|
|
|
{
|
|
|
|
TriangulateModifierData *tmd = (TriangulateModifierData *)md;
|
|
|
|
DerivedMesh *result;
|
2012-11-19 23:52:24 +00:00
|
|
|
if (!(result = triangulate_dm(dm, tmd->flag))) {
|
2012-11-19 20:40:08 +00:00
|
|
|
return dm;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
ModifierTypeInfo modifierType_Triangulate = {
|
|
|
|
/* name */ "Triangulate",
|
|
|
|
/* structName */ "TriangulateModifierData",
|
|
|
|
/* structSize */ sizeof(TriangulateModifierData),
|
|
|
|
/* type */ eModifierTypeType_Constructive,
|
|
|
|
/* flags */ eModifierTypeFlag_AcceptsMesh |
|
2012-11-19 23:52:24 +00:00
|
|
|
eModifierTypeFlag_SupportsEditmode |
|
|
|
|
eModifierTypeFlag_SupportsMapping |
|
|
|
|
eModifierTypeFlag_EnableInEditmode |
|
|
|
|
eModifierTypeFlag_AcceptsCVs,
|
2012-11-19 20:40:08 +00:00
|
|
|
|
|
|
|
/* copyData */ copyData,
|
|
|
|
/* deformVerts */ NULL,
|
|
|
|
/* deformMatrices */ NULL,
|
|
|
|
/* deformVertsEM */ NULL,
|
|
|
|
/* deformMatricesEM */ NULL,
|
|
|
|
/* applyModifier */ applyModifier,
|
|
|
|
/* applyModifierEM */ applyModifierEM,
|
|
|
|
/* initData */ initData,
|
|
|
|
/* requiredDataMask */ NULL, //requiredDataMask,
|
|
|
|
/* freeData */ NULL,
|
|
|
|
/* isDisabled */ NULL,
|
|
|
|
/* updateDepgraph */ NULL,
|
|
|
|
/* dependsOnTime */ NULL,
|
|
|
|
/* dependsOnNormals */ NULL,
|
|
|
|
/* foreachObjectLink */ NULL,
|
|
|
|
/* foreachIDLink */ NULL,
|
|
|
|
};
|