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:
authorHans Goudey <h.goudey@me.com>2022-05-09 18:33:30 +0300
committerHans Goudey <h.goudey@me.com>2022-05-09 18:33:41 +0300
commite0e95f789576fec43550ef8aae8ae94151f7967f (patch)
tree3b01c42c23582c29fe10d31b7f7db6ca9d18145e /source/blender/geometry/CMakeLists.txt
parent9f8f35008ca907ea9a9511aff811452fb25fc560 (diff)
Refactor: Move resample curves code to the geometry module
This commit moves the code for the resample curves node to the geometry module, to allow reusing it in any editor. Split from D14870.
Diffstat (limited to 'source/blender/geometry/CMakeLists.txt')
-rw-r--r--source/blender/geometry/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/geometry/CMakeLists.txt b/source/blender/geometry/CMakeLists.txt
index 8716d6c8f67..9dcacb13536 100644
--- a/source/blender/geometry/CMakeLists.txt
+++ b/source/blender/geometry/CMakeLists.txt
@@ -19,12 +19,14 @@ set(SRC
intern/mesh_to_curve_convert.cc
intern/point_merge_by_distance.cc
intern/realize_instances.cc
+ intern/resample_curves.cc
intern/uv_parametrizer.c
GEO_mesh_merge_by_distance.hh
GEO_mesh_to_curve.hh
GEO_point_merge_by_distance.hh
GEO_realize_instances.hh
+ GEO_resample_curves.hh
GEO_uv_parametrizer.h
)