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>2007-11-28 00:50:06 +0300
committerMartin Poirier <theeth@yahoo.com>2007-11-28 00:50:06 +0300
commit24beb8fb8c9042019827ecfefb05d074083c78b5 (patch)
tree0356d50cf486a1a2c94211085f1b58e2df92b735 /source/blender/makesdna/DNA_scene_types.h
parent2a0f072fd928fb6f850e6f4dda3e1640922e2e05 (diff)
Adding spatial symmetry detection limit (used to differentiate between purely topological symmetries and potential spatial symmetries that should be restored by merging symmetric arcs).
Also shortening the names in the UI a bit and some rewording or tool tips.
Diffstat (limited to 'source/blender/makesdna/DNA_scene_types.h')
-rw-r--r--source/blender/makesdna/DNA_scene_types.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index 46b23b12c26..485f202c25a 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -371,12 +371,13 @@ typedef struct ToolSettings {
float skgen_length_limit;
float skgen_angle_limit;
float skgen_correlation_limit;
+ float skgen_symmetry_limit;
short skgen_options;
char skgen_postpro;
char skgen_postpro_passes;
char skgen_subdivisions[3];
- char pad3[1];
+ char pad3[5];
} ToolSettings;
/* Used by all brushes to store their properties, which can be directly set
@@ -681,11 +682,10 @@ typedef struct Scene {
/* toolsettings->skgen_options */
#define SKGEN_FILTER_INTERNAL 1
#define SKGEN_FILTER_EXTERNAL 2
-#define SKGEN_REPOSITION 4
-#define SKGEN_SYMMETRY 8
-#define SKGEN_CUT_LENGTH 16
-#define SKGEN_CUT_ANGLE 32
-#define SKGEN_CUT_CORRELATION 64
+#define SKGEN_SYMMETRY 4
+#define SKGEN_CUT_LENGTH 8
+#define SKGEN_CUT_ANGLE 16
+#define SKGEN_CUT_CORRELATION 32
#define SKGEN_SUB_LENGTH 0
#define SKGEN_SUB_ANGLE 1