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-14 04:57:17 +0300
committerMartin Poirier <theeth@yahoo.com>2007-11-14 04:57:17 +0300
commit166cc3110d6c1d3c648a99cdc56c1137b913bfe4 (patch)
tree6321f47ecb9f23c33bd26504c0889f46d0692999 /source/blender/makesdna/DNA_scene_types.h
parenteeb9e1486d6babb9c64bcaa0b29236def05d9f95 (diff)
Fixing up angle based subdivisions.
Adding symetry detection (right now, only primary symetries and only used to determine bone orientation). Fixing bugs (infinite loops) in length based subdivisions. Adding number of post processing passes parameter
Diffstat (limited to 'source/blender/makesdna/DNA_scene_types.h')
-rw-r--r--source/blender/makesdna/DNA_scene_types.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index c76d9a20b52..43f0b5acc49 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -372,8 +372,8 @@ typedef struct ToolSettings {
float skgen_angle_limit;
short skgen_options;
char skgen_postpro;
+ char skgen_postpro_passes;
- char pad4[1];
} ToolSettings;
/* Used by all brushes to store their properties, which can be directly set
@@ -682,12 +682,12 @@ typedef struct Scene {
#define SKGEN_SYMMETRY 8
#define SKGEN_CUT_LENGTH 16
#define SKGEN_CUT_ANGLE 32
+#define SKGEN_LENGTH_FIRST 64
/* toolsettings->skgen_postpro */
-#define SKGEN_NONE 0
-#define SKGEN_SMOOTH 1
-#define SKGEN_AVERAGE 2
-#define SKGEN_SHARPEN 3
+#define SKGEN_SMOOTH 0
+#define SKGEN_AVERAGE 1
+#define SKGEN_SHARPEN 2
#ifdef __cplusplus
}