From 27e86ed8324c5cc72e58f61231018b6c77689f03 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 20 Mar 2014 22:56:28 +1100 Subject: Code cleanup: use bools --- source/blender/blenlib/BLI_quadric.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenlib/BLI_quadric.h') diff --git a/source/blender/blenlib/BLI_quadric.h b/source/blender/blenlib/BLI_quadric.h index e71a6473852..82c39463dd2 100644 --- a/source/blender/blenlib/BLI_quadric.h +++ b/source/blender/blenlib/BLI_quadric.h @@ -51,6 +51,6 @@ void BLI_quadric_mul(Quadric *a, const float scalar); /* solve */ float BLI_quadric_evaluate(const Quadric *q, const float v[3]); -int BLI_quadric_optimize(const Quadric *q, float v[3], const float epsilon); +bool BLI_quadric_optimize(const Quadric *q, float v[3], const float epsilon); #endif /* __BLI_QUADRIC_H__ */ -- cgit v1.2.3