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:16:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-06-13 08:16:18 +0300
commit75aac463e795d7b8b5b19d55b5620618b176c211 (patch)
treef487bf7d497a7e5fb7a7c348f012ea9c01931d96 /source/blender/blenkernel/BKE_anim_path.h
parent1754828e33bea1d288cfbdc9aeaafeb0109ef50b (diff)
Cleanup: comments, use bool return value
Diffstat (limited to 'source/blender/blenkernel/BKE_anim_path.h')
-rw-r--r--source/blender/blenkernel/BKE_anim_path.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/blenkernel/BKE_anim_path.h b/source/blender/blenkernel/BKE_anim_path.h
index 64bcedefa58..15af144986f 100644
--- a/source/blender/blenkernel/BKE_anim_path.h
+++ b/source/blender/blenkernel/BKE_anim_path.h
@@ -36,13 +36,13 @@ struct Path;
void free_path(struct Path *path);
void calc_curvepath(struct Object *ob, struct ListBase *nurbs);
-int where_on_path(struct Object *ob,
- float ctime,
- float vec[4],
- float dir[3],
- float quat[4],
- float *radius,
- float *weight);
+bool where_on_path(struct Object *ob,
+ float ctime,
+ float vec[4],
+ float dir[3],
+ float quat[4],
+ float *radius,
+ float *weight);
#ifdef __cplusplus
}