Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattoverby <mattoverby@gmail.com>2020-08-17 22:42:55 +0300
committermattoverby <mattoverby@gmail.com>2020-08-17 22:42:55 +0300
commit663cbe22e79e71e2955e98cfbcaa1b8de851701a (patch)
tree88a5285f5ae03fe917aa25d4fd22f90bf6964b48 /source/blender/editors
parentf4795564b88d4419b5aea4b8f33979486bd5a232 (diff)
enable tetgen remesher to view tetgen output
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/object/object_remesh.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/blender/editors/object/object_remesh.c b/source/blender/editors/object/object_remesh.c
index 2b7b4084436..119f0d8d238 100644
--- a/source/blender/editors/object/object_remesh.c
+++ b/source/blender/editors/object/object_remesh.c
@@ -1202,11 +1202,6 @@ void OBJECT_OT_quadriflow_remesh(wmOperatorType *ot)
static int tetgen_remesh_exec(bContext *C, wmOperator *op)
{
-#ifndef WITH_TETGEN
- BKE_report(op->reports, RPT_ERROR, "WITH_TETGEN compile option is off");
- return OPERATOR_CANCELLED;
-#endif
-
Object *ob = CTX_data_active_object(C);
Mesh *mesh = ob->data;