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
path: root/source
diff options
context:
space:
mode:
authorLukas Tönne <lukas.toenne@gmail.com>2022-07-28 16:17:17 +0300
committerLukas Tönne <lukas.toenne@gmail.com>2022-07-28 16:17:17 +0300
commita52c06de0eeb7fd4e3e1fc9d08f17cdaa12eaa47 (patch)
tree7c513549ca7171a6e4192d037d170d73577d848f /source
parentd379529289776be23d46a0aa805d7a5818bd0473 (diff)
Removed unused wrapper method.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/BKE_curves_constraints.hh10
1 files changed, 0 insertions, 10 deletions
diff --git a/source/blender/blenkernel/BKE_curves_constraints.hh b/source/blender/blenkernel/BKE_curves_constraints.hh
index d9bd61af707..59044b6a97c 100644
--- a/source/blender/blenkernel/BKE_curves_constraints.hh
+++ b/source/blender/blenkernel/BKE_curves_constraints.hh
@@ -128,16 +128,6 @@ class ConstraintSolver {
* Satisfy constraints on curve points based on initial deformation.
*/
void solve_constraints(CurvesGeometry &curves, VArray<int> changed_curves) const;
-
- /**
- * Satisfy constraints on curve points based on initial deformation.
- */
- inline void solve_constraints(CurvesGeometry &curves, IndexRange changed_curves) const
- {
- solve_constraints(curves,
- VArray<int>::ForFunc(changed_curves.size(),
- [changed_curves](int64_t i) { return (int)i; }));
- }
};
} // namespace blender::bke::curves