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>2020-06-13 08:25:43 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-06-13 08:56:36 +0300
commitca10903299e7cff40674eac3943d03fd36d33a18 (patch)
treeda9e6cc62cefd6880b4fdc6ad11d70cbdb34ee29 /source/blender/blenkernel/BKE_anim_path.h
parent75aac463e795d7b8b5b19d55b5620618b176c211 (diff)
Cleanup: use 'r_' prefix for return arguments
Also improve alignment.
Diffstat (limited to 'source/blender/blenkernel/BKE_anim_path.h')
-rw-r--r--source/blender/blenkernel/BKE_anim_path.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/blenkernel/BKE_anim_path.h b/source/blender/blenkernel/BKE_anim_path.h
index 15af144986f..b56e4a4a262 100644
--- a/source/blender/blenkernel/BKE_anim_path.h
+++ b/source/blender/blenkernel/BKE_anim_path.h
@@ -38,11 +38,11 @@ void free_path(struct Path *path);
void calc_curvepath(struct Object *ob, struct ListBase *nurbs);
bool where_on_path(struct Object *ob,
float ctime,
- float vec[4],
- float dir[3],
- float quat[4],
- float *radius,
- float *weight);
+ float r_vec[4],
+ float r_dir[3],
+ float r_quat[4],
+ float *r_radius,
+ float *r_weight);
#ifdef __cplusplus
}