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:
authorMartin Poirier <theeth@yahoo.com>2008-05-30 21:42:02 +0400
committerMartin Poirier <theeth@yahoo.com>2008-05-30 21:42:02 +0400
commit08750f66a46979cf6f5830068fba69f61e31fe2d (patch)
tree69719650194f38e7166f185a31a1dfad21609fc4 /source/blender/blenlib/BLI_graph.h
parentab787c976567f46c7fcb5fd18806903a270350b9 (diff)
Retargetting
More refined symmetry grouping (can take care of tails properly) and better matching between symmetry groups (based on relative length of arcs)
Diffstat (limited to 'source/blender/blenlib/BLI_graph.h')
-rw-r--r--source/blender/blenlib/BLI_graph.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_graph.h b/source/blender/blenlib/BLI_graph.h
index 1d29cc88651..0763c7edff0 100644
--- a/source/blender/blenlib/BLI_graph.h
+++ b/source/blender/blenlib/BLI_graph.h
@@ -52,6 +52,7 @@ typedef struct BArc {
float length;
int symmetry_level;
+ int symmetry_group;
int symmetry_flag;
} BArc;
@@ -98,5 +99,6 @@ void BLI_mirrorAlongAxis(float v[3], float center[3], float axis[3]);
* axial symetry sides */
#define SYM_SIDE_POSITIVE 1
#define SYM_SIDE_NEGATIVE 2
+/* Anything higher is the order in radial symmetry */
#endif /*BLI_GRAPH_H_*/