2012-11-18 08:35:27 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
* \ingroup bmesh
|
2013-03-30 08:54:50 +00:00
|
|
|
*
|
|
|
|
* Bevel wrapper around #BM_mesh_bevel
|
2012-11-18 08:35:27 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
|
2019-11-20 16:12:32 -05:00
|
|
|
#include "BKE_curveprofile.h"
|
|
|
|
#include "DNA_curveprofile_types.h"
|
2020-03-19 09:33:03 +01:00
|
|
|
#include "bmesh.h"
|
|
|
|
#include "bmesh_tools.h"
|
2012-11-18 08:35:27 +00:00
|
|
|
|
|
|
|
#include "intern/bmesh_operators_private.h" /* own include */
|
|
|
|
|
|
|
|
void bmo_bevel_exec(BMesh *bm, BMOperator *op)
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
const float offset = BMO_slot_float_get(op->slots_in, "offset");
|
|
|
|
const int offset_type = BMO_slot_int_get(op->slots_in, "offset_type");
|
2020-06-22 22:25:55 -04:00
|
|
|
const int profile_type = BMO_slot_int_get(op->slots_in, "profile_type");
|
2019-04-17 06:17:24 +02:00
|
|
|
const int seg = BMO_slot_int_get(op->slots_in, "segments");
|
2020-07-21 16:32:00 -04:00
|
|
|
const int affect_type = BMO_slot_int_get(op->slots_in, "affect");
|
2019-04-17 06:17:24 +02:00
|
|
|
const float profile = BMO_slot_float_get(op->slots_in, "profile");
|
|
|
|
const bool clamp_overlap = BMO_slot_bool_get(op->slots_in, "clamp_overlap");
|
|
|
|
const int material = BMO_slot_int_get(op->slots_in, "material");
|
|
|
|
const bool loop_slide = BMO_slot_bool_get(op->slots_in, "loop_slide");
|
|
|
|
const bool mark_seam = BMO_slot_bool_get(op->slots_in, "mark_seam");
|
|
|
|
const bool mark_sharp = BMO_slot_bool_get(op->slots_in, "mark_sharp");
|
|
|
|
const bool harden_normals = BMO_slot_bool_get(op->slots_in, "harden_normals");
|
|
|
|
const int face_strength_mode = BMO_slot_int_get(op->slots_in, "face_strength_mode");
|
|
|
|
const int miter_outer = BMO_slot_int_get(op->slots_in, "miter_outer");
|
|
|
|
const int miter_inner = BMO_slot_int_get(op->slots_in, "miter_inner");
|
|
|
|
const float spread = BMO_slot_float_get(op->slots_in, "spread");
|
|
|
|
const float smoothresh = BMO_slot_float_get(op->slots_in, "smoothresh");
|
2019-11-20 16:12:32 -05:00
|
|
|
const CurveProfile *custom_profile = BMO_slot_ptr_get(op->slots_in, "custom_profile");
|
|
|
|
const int vmesh_method = BMO_slot_int_get(op->slots_in, "vmesh_method");
|
2012-11-18 08:35:27 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
if (offset > 0) {
|
|
|
|
BMOIter siter;
|
|
|
|
BMEdge *e;
|
|
|
|
BMVert *v;
|
2012-11-18 09:33:11 +00:00
|
|
|
|
2019-04-17 06:17:24 +02: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. */
|
|
|
|
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
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
BMO_ITER (v, &siter, op->slots_in, "geom", BM_VERT) {
|
|
|
|
BM_elem_flag_enable(v, BM_ELEM_TAG);
|
|
|
|
}
|
2012-11-18 08:35:27 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
BMO_ITER (e, &siter, op->slots_in, "geom", BM_EDGE) {
|
|
|
|
if (BM_edge_is_manifold(e)) {
|
|
|
|
BM_elem_flag_enable(e, BM_ELEM_TAG);
|
|
|
|
/* in case verts were not also included in the geom */
|
|
|
|
BM_elem_flag_enable(e->v1, BM_ELEM_TAG);
|
|
|
|
BM_elem_flag_enable(e->v2, BM_ELEM_TAG);
|
|
|
|
}
|
|
|
|
}
|
2012-11-18 09:33:11 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
BM_mesh_bevel(bm,
|
|
|
|
offset,
|
|
|
|
offset_type,
|
2020-06-22 22:25:55 -04:00
|
|
|
profile_type,
|
2019-04-17 06:17:24 +02:00
|
|
|
seg,
|
|
|
|
profile,
|
2020-07-21 16:32:00 -04:00
|
|
|
affect_type,
|
2019-04-17 06:17:24 +02:00
|
|
|
false,
|
|
|
|
clamp_overlap,
|
|
|
|
NULL,
|
|
|
|
-1,
|
|
|
|
material,
|
|
|
|
loop_slide,
|
|
|
|
mark_seam,
|
|
|
|
mark_sharp,
|
|
|
|
harden_normals,
|
|
|
|
face_strength_mode,
|
|
|
|
miter_outer,
|
|
|
|
miter_inner,
|
|
|
|
spread,
|
2019-11-20 16:12:32 -05:00
|
|
|
smoothresh,
|
|
|
|
custom_profile,
|
|
|
|
vmesh_method);
|
2012-11-19 02:26:59 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
BMO_slot_buffer_from_enabled_hflag(bm, op, op->slots_out, "faces.out", BM_FACE, BM_ELEM_TAG);
|
|
|
|
BMO_slot_buffer_from_enabled_hflag(bm, op, op->slots_out, "edges.out", BM_EDGE, BM_ELEM_TAG);
|
|
|
|
BMO_slot_buffer_from_enabled_hflag(bm, op, op->slots_out, "verts.out", BM_VERT, BM_ELEM_TAG);
|
|
|
|
}
|
2012-11-18 08:35:27 +00:00
|
|
|
}
|