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:
authorCampbell Barton <ideasman42@gmail.com>2019-03-18 06:21:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-18 06:23:34 +0300
commit8f5ba8e1a1df2e496bbf24573a68cffe564e24db (patch)
tree113e56cea5c395c02619613b4d2143a2d86da53f /source/blender/makesdna/DNA_object_force_types.h
parent317cb1dd6507be3e043e32eb1ddaece509bbbbb5 (diff)
Cleanup: spaces around operators in DNA headers
Diffstat (limited to 'source/blender/makesdna/DNA_object_force_types.h')
-rw-r--r--source/blender/makesdna/DNA_object_force_types.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_object_force_types.h b/source/blender/makesdna/DNA_object_force_types.h
index c5391d7c6d2..4b276a0aa85 100644
--- a/source/blender/makesdna/DNA_object_force_types.h
+++ b/source/blender/makesdna/DNA_object_force_types.h
@@ -186,7 +186,7 @@ typedef struct EffectorWeights {
#define EFF_WEIGHT_DO_HAIR 1
/* Point cache file data types:
- * - used as (1<<flag) so poke jahka if you reach the limit of 15
+ * - used as (1 << flag) so poke jahka if you reach the limit of 15
* - to add new data types update:
* - BKE_ptcache_data_size()
* - ptcache_file_init_pointers()
@@ -274,7 +274,7 @@ typedef struct PointCache {
char path[1024];
/**
- * Array of length endframe-startframe+1 with flags to indicate cached frames.
+ * Array of length `endframe - startframe + 1` with flags to indicate cached frames.
* Can be later used for other per frame flags too if needed.
*/
char *cached_frames;
@@ -450,7 +450,7 @@ typedef struct SoftBody {
/** used for (simple) force */
#define PFIELD_GRAVITATION (1 << 18)
/** Enable cloth collision side detection based on normal. */
-#define PFIELD_CLOTH_USE_CULLING (1<< 19)
+#define PFIELD_CLOTH_USE_CULLING (1 << 19)
/** Replace collision direction with collider normal. */
#define PFIELD_CLOTH_USE_NORMAL (1 << 20)