From e56e7bd1ec3081a13e44319a1b2793f4043d07dd Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 15 Apr 2016 18:02:17 +1000 Subject: Add lib for n-dimensional cubic curve fitting This will be used for calculating bezier curves from freehand drawing, may be used for other areas too. Original code from GraphicsGems, 1990 (FitCurve.c), with updates from OpenToonz, under 3 clause BSD license. with own minor modifications for integration with Blender: - support adding extra custom-data. - improved handle clamping. --- extern/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'extern/CMakeLists.txt') diff --git a/extern/CMakeLists.txt b/extern/CMakeLists.txt index 1cce7dc24cc..58e0c68148b 100644 --- a/extern/CMakeLists.txt +++ b/extern/CMakeLists.txt @@ -23,6 +23,9 @@ # # ***** END GPL LICENSE BLOCK ***** +# Libs that adhere to strict flags +add_subdirectory(curve_fit_nd) + # Otherwise we get warnings here that we cant fix in external projects remove_strict_flags() -- cgit v1.2.3