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:
authorRob Haarsma <phaseIV@zonnet.nl>2003-05-03 20:06:30 +0400
committerRob Haarsma <phaseIV@zonnet.nl>2003-05-03 20:06:30 +0400
commitad3a972a258cc47d873ed4020202a8261476bdb3 (patch)
treea4437b4184663eefe6c17892f69ae5e1de32a092 /source/blender/src/editface.c
parent0f95f38ecf901bf9f1ac99a2e5ffe41837515656 (diff)
added two extra uv mapping types to uv menu,
nothing big really
Diffstat (limited to 'source/blender/src/editface.c')
-rw-r--r--source/blender/src/editface.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/source/blender/src/editface.c b/source/blender/src/editface.c
index 191cf031994..fcd7dbc8be0 100644
--- a/source/blender/src/editface.c
+++ b/source/blender/src/editface.c
@@ -592,9 +592,11 @@ float CalcNormUV(float *a, float *b, float *c)
#define UV_CUBE_MAPPING 2
#define UV_CYL_MAPPING 3
#define UV_SPHERE_MAPPING 4
+#define UV_BOUNDS8_MAPPING 68
#define UV_BOUNDS4_MAPPING 65
#define UV_BOUNDS2_MAPPING 66
#define UV_BOUNDS1_MAPPING 67
+#define UV_STD8_MAPPING 131
#define UV_STD4_MAPPING 130
#define UV_STD2_MAPPING 129
#define UV_STD1_MAPPING 128
@@ -631,9 +633,11 @@ void uv_autocalc_tface()
mode= pupmenu(MENUTITLE("UV Calculation")
MENUSTRING("Cube", UV_CUBE_MAPPING) "|"
MENUSTRING("Cylinder", UV_CYL_MAPPING) "|"
+ MENUSTRING("Bounds to 1/8", UV_BOUNDS8_MAPPING) "|"
MENUSTRING("Bounds to 1/4", UV_BOUNDS4_MAPPING) "|"
MENUSTRING("Bounds to 1/2", UV_BOUNDS2_MAPPING) "|"
MENUSTRING("Bounds to 1/1", UV_BOUNDS1_MAPPING) "|"
+ MENUSTRING("Standard 1/8", UV_STD8_MAPPING) "|"
MENUSTRING("Standard 1/4", UV_STD4_MAPPING) "|"
MENUSTRING("Standard 1/2", UV_STD2_MAPPING) "|"
MENUSTRING("Standard 1/1", UV_STD1_MAPPING) "|"
@@ -687,6 +691,9 @@ void uv_autocalc_tface()
}
}
+ case UV_BOUNDS8_MAPPING:
+ fac = 0.125;
+ goto bounds_mapping;
case UV_BOUNDS4_MAPPING:
fac = 0.25;
goto bounds_mapping;
@@ -780,6 +787,9 @@ void uv_autocalc_tface()
}
break;
+ case UV_STD8_MAPPING:
+ fac = 0.125;
+ goto standard_mapping;
case UV_STD4_MAPPING:
fac = 0.25;
goto standard_mapping;