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:
authorCampbell Barton <ideasman42@gmail.com>2016-03-30 20:21:02 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-03-30 20:25:19 +0300
commita55477d32a2b3f20fd1f54ec45018208ade57b8e (patch)
treef6ca9ff32c6d88219e4b270ede187ea6df526951 /source/blender/bmesh/tools/bmesh_path.h
parent26132eaf1f8058d66f39a5009fa3803935e091c4 (diff)
Shortest Path Select: option to select all paths between 2 elements
This option selects all paths between source/destination which are no longer than the path found. Handy for selecting meshes with a grid-topology.
Diffstat (limited to 'source/blender/bmesh/tools/bmesh_path.h')
-rw-r--r--source/blender/bmesh/tools/bmesh_path.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/bmesh/tools/bmesh_path.h b/source/blender/bmesh/tools/bmesh_path.h
index fdcea8e9803..9df1568f750 100644
--- a/source/blender/bmesh/tools/bmesh_path.h
+++ b/source/blender/bmesh/tools/bmesh_path.h
@@ -30,6 +30,8 @@
struct BMCalcPathParams {
unsigned int use_topology_distance : 1;
unsigned int use_step_face : 1;
+ /* return all paths (no longer ordered) */
+ unsigned int use_fill : 1;
};
struct LinkNode *BM_mesh_calc_path_vert(