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>2016-05-02 14:08:02 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-05-02 14:08:02 +0300
commit122496dda1071eb35b8f5440ac6ee880b31310c0 (patch)
treed74836a92632cdb9fe6f5784c21e5c857e6dba6b /extern/curve_fit_nd
parentf28c626574ee2de46f6b6de1d1c41b9e1d8307ef (diff)
Correct header (can't use uint here)
Diffstat (limited to 'extern/curve_fit_nd')
-rw-r--r--extern/curve_fit_nd/curve_fit_nd.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/extern/curve_fit_nd/curve_fit_nd.h b/extern/curve_fit_nd/curve_fit_nd.h
index 98e6779fd6f..eee6485a056 100644
--- a/extern/curve_fit_nd/curve_fit_nd.h
+++ b/extern/curve_fit_nd/curve_fit_nd.h
@@ -94,24 +94,24 @@ int curve_fit_cubic_to_points_fl(
* \param r_error_sq: The maximum distance (squared) this curve diverges from \a points.
*/
int curve_fit_cubic_to_points_single_db(
- const double *points,
- const uint points_len,
- const uint dims,
- const double error_threshold,
- const double tan_l[],
- const double tan_r[],
+ const double *points,
+ const unsigned int points_len,
+ const unsigned int dims,
+ const double error_threshold,
+ const double tan_l[],
+ const double tan_r[],
double r_handle_l[],
double r_handle_r[],
double *r_error_sq);
int curve_fit_cubic_to_points_single_fl(
- const float *points,
- const uint points_len,
- const uint dims,
- const float error_threshold,
- const float tan_l[],
- const float tan_r[],
+ const float *points,
+ const unsigned int points_len,
+ const unsigned int dims,
+ const float error_threshold,
+ const float tan_l[],
+ const float tan_r[],
float r_handle_l[],
float r_handle_r[],