2012-11-18 08:35:27 +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):
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*/
|
|
|
|
|
2012-11-19 00:54:55 +00:00
|
|
|
/** \file blender/bmesh/operators/bmo_bevel.c
|
2012-11-18 08:35:27 +00:00
|
|
|
* \ingroup bmesh
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
|
|
|
|
#include "bmesh.h"
|
|
|
|
|
|
|
|
#include "intern/bmesh_operators_private.h" /* own include */
|
|
|
|
|
|
|
|
void bmo_bevel_exec(BMesh *bm, BMOperator *op)
|
|
|
|
{
|
2012-11-19 14:58:31 +00:00
|
|
|
const float offset = BMO_slot_float_get(op->slots_in, "offset");
|
|
|
|
const int seg = BMO_slot_int_get(op->slots_in, "segments");
|
2013-01-14 16:42:43 +00:00
|
|
|
const bool vonly = BMO_slot_bool_get(op->slots_in, "vertex_only");
|
2012-11-18 08:35:27 +00:00
|
|
|
|
|
|
|
if (offset > 0) {
|
2012-11-18 09:33:11 +00:00
|
|
|
BMOIter siter;
|
|
|
|
BMEdge *e;
|
|
|
|
BMVert *v;
|
|
|
|
|
2012-11-19 02:26:59 +00:00
|
|
|
/* first flush 'geom' into flags, this makes it possible to check connected data,
|
|
|
|
* BM_FACE is cleared so we can put newly created faces into a bmesh slot. */
|
2013-01-14 16:42:43 +00:00
|
|
|
BM_mesh_elem_hflag_disable_all(bm, BM_VERT | BM_EDGE | BM_FACE, BM_ELEM_TAG, false);
|
2012-11-18 08:35:27 +00:00
|
|
|
|
2012-11-19 14:58:31 +00:00
|
|
|
BMO_ITER (v, &siter, op->slots_in, "geom", BM_VERT) {
|
2012-11-18 08:35:27 +00:00
|
|
|
BM_elem_flag_enable(v, BM_ELEM_TAG);
|
|
|
|
}
|
|
|
|
|
2012-11-19 14:58:31 +00:00
|
|
|
BMO_ITER (e, &siter, op->slots_in, "geom", BM_EDGE) {
|
2012-11-18 09:33:11 +00:00
|
|
|
if (BM_edge_is_manifold(e)) {
|
|
|
|
BM_elem_flag_enable(e, BM_ELEM_TAG);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-13 14:08:12 +00:00
|
|
|
BM_mesh_bevel(bm, offset, seg, vonly, false, false, NULL, -1);
|
2012-11-19 02:26:59 +00:00
|
|
|
|
2012-11-20 05:50:19 +00:00
|
|
|
BMO_slot_buffer_from_enabled_hflag(bm, op, op->slots_out, "faces.out", BM_FACE, BM_ELEM_TAG);
|
2012-11-18 08:35:27 +00:00
|
|
|
}
|
|
|
|
}
|