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-19 15:55:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-19 15:55:04 +0300
commit8a125e3b55de11558e12ecd5e41700c8f3b55662 (patch)
tree164aad919b5d90d9516ff0974962aef585e073e0 /source/blender/blenkernel/BKE_gpencil.h
parentc001a9c3b6fcee5a31296441d62d99d3ee49b477 (diff)
Cleanup: remove unused for gpencil bounds calculation
Diffstat (limited to 'source/blender/blenkernel/BKE_gpencil.h')
-rw-r--r--source/blender/blenkernel/BKE_gpencil.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/blenkernel/BKE_gpencil.h b/source/blender/blenkernel/BKE_gpencil.h
index eb4101fa2f7..353ba61b70d 100644
--- a/source/blender/blenkernel/BKE_gpencil.h
+++ b/source/blender/blenkernel/BKE_gpencil.h
@@ -136,13 +136,13 @@ struct Material *BKE_gpencil_material_ensure(struct Main *bmain, struct Object *
/* object boundbox */
bool BKE_gpencil_data_minmax(
- struct Object *ob, const struct bGPdata *gpd,
- float r_min[3], float r_max[3]);
+ const struct bGPdata *gpd,
+ float r_min[3], float r_max[3]);
bool BKE_gpencil_stroke_minmax(
- const struct bGPDstroke *gps, const bool use_select,
- float r_min[3], float r_max[3]);
+ const struct bGPDstroke *gps, const bool use_select,
+ float r_min[3], float r_max[3]);
bool BKE_gpencil_stroke_select_check(
- const struct bGPDstroke *gps);
+ const struct bGPDstroke *gps);
struct BoundBox *BKE_gpencil_boundbox_get(struct Object *ob);
void BKE_gpencil_centroid_3d(struct bGPdata *gpd, float r_centroid[3]);