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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-04-28 13:50:57 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-04-28 13:50:57 +0400
commitb95a24c2cc736119d491f8326fd0b9346b9f8f48 (patch)
tree17457d3ea721b8f7b38359d03f7f374cdf5cebcf /source
parent7c125b9cf419643050ffdb7c92929cdc06517f4b (diff)
fix [#27201] icosphere normals problem
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/mesh/editmesh_add.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/source/blender/editors/mesh/editmesh_add.c b/source/blender/editors/mesh/editmesh_add.c
index 8365d88d0c8..fa3619883f4 100644
--- a/source/blender/editors/mesh/editmesh_add.c
+++ b/source/blender/editors/mesh/editmesh_add.c
@@ -90,21 +90,21 @@ static float icovert[12][3] = {
{0.0f,0.0f,200.0f}
};
static short icoface[20][3] = {
- {1,0,2},
+ {2,0,1},
{1,0,5},
- {2,0,3},
- {3,0,4},
- {4,0,5},
+ {3,0,2},
+ {4,0,3},
+ {5,0,4},
{1,5,10},
{2,1,6},
{3,2,7},
{4,3,8},
{5,4,9},
- {10,1,6},
- {6,2,7},
- {7,3,8},
- {8,4,9},
- {9,5,10},
+ {6,1,10},
+ {7,2,6},
+ {8,3,7},
+ {9,4,8},
+ {10,5,9},
{6,10,11},
{7,6,11},
{8,7,11},