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:
Diffstat (limited to 'extern/carve/include/carve/csg.hpp')
-rw-r--r--extern/carve/include/carve/csg.hpp16
1 files changed, 14 insertions, 2 deletions
diff --git a/extern/carve/include/carve/csg.hpp b/extern/carve/include/carve/csg.hpp
index b098cd86cef..92b03a4c33f 100644
--- a/extern/carve/include/carve/csg.hpp
+++ b/extern/carve/include/carve/csg.hpp
@@ -87,6 +87,11 @@ namespace carve {
const meshset_t::face_t * /* orig_face */,
bool /* flipped */) {
}
+ virtual void edgeDivision(const meshset_t::edge_t * /* orig_edge */,
+ size_t /* orig_edge_idx */,
+ const meshset_t::vertex_t * /* v1 */,
+ const meshset_t::vertex_t * /* v2 */) {
+ }
virtual ~Hook() {
}
@@ -103,11 +108,13 @@ namespace carve {
RESULT_FACE_HOOK = 0,
PROCESS_OUTPUT_FACE_HOOK = 1,
INTERSECTION_VERTEX_HOOK = 2,
- HOOK_MAX = 3,
+ EDGE_DIVISION_HOOK = 3,
+ HOOK_MAX = 4,
RESULT_FACE_BIT = 0x0001,
PROCESS_OUTPUT_FACE_BIT = 0x0002,
- INTERSECTION_VERTEX_BIT = 0x0004
+ INTERSECTION_VERTEX_BIT = 0x0004,
+ EDGE_DIVISION_BIT = 0x0008
};
std::vector<std::list<Hook *> > hooks;
@@ -125,6 +132,11 @@ namespace carve {
const meshset_t::face_t *orig_face,
bool flipped);
+ void edgeDivision(const meshset_t::edge_t *orig_edge,
+ size_t orig_edge_idx,
+ const meshset_t::vertex_t *v1,
+ const meshset_t::vertex_t *v2);
+
void registerHook(Hook *hook, unsigned hook_bits);
void unregisterHook(Hook *hook);