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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-03-25 15:55:03 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-03-25 16:28:29 +0300
commit489c015e706cf3bcfd246a2a081664d290ec7096 (patch)
tree2fc1ad494d7172419c60a8d16c9f8f103fa53651 /source/blender/makesdna/DNA_customdata_types.h
parenta6f9e0d6441c3741280bda998e179f2a2da8efe2 (diff)
Fix T62891: particle even distribution is not even.
CD_ORCO coordinates are stored normalized by convention, this code path did not store them correctly.
Diffstat (limited to 'source/blender/makesdna/DNA_customdata_types.h')
-rw-r--r--source/blender/makesdna/DNA_customdata_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_customdata_types.h b/source/blender/makesdna/DNA_customdata_types.h
index 91412044e0e..10d18684413 100644
--- a/source/blender/makesdna/DNA_customdata_types.h
+++ b/source/blender/makesdna/DNA_customdata_types.h
@@ -108,7 +108,7 @@ typedef enum CustomDataType {
CD_PROP_INT = 11,
CD_PROP_STR = 12,
CD_ORIGSPACE = 13, /* for modifier stack face location mapping */
- CD_ORCO = 14,
+ CD_ORCO = 14, /* undeformed vertex coordinates, normalized to 0..1 range */
/* CD_MTEXPOLY = 15, */ /* deprecated */
CD_MLOOPUV = 16,
CD_MLOOPCOL = 17,