From 1a09aa97c53356f3beb7ac4cbc56ad77426b0967 Mon Sep 17 00:00:00 2001 From: Nick Fisher Date: Tue, 18 Jul 2023 11:31:24 +0800 Subject: [PATCH] cleanup --- lib/animations/bone_driver.dart | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lib/animations/bone_driver.dart b/lib/animations/bone_driver.dart index 3ca30f5f..7a78abf3 100644 --- a/lib/animations/bone_driver.dart +++ b/lib/animations/bone_driver.dart @@ -51,17 +51,10 @@ class BoneDriver { return rotation; }).toList(); - if (frameNum == 0) { - print(rotations); - } - var result = rotations.fold( rotations.first, (Quaternion a, Quaternion b) => a + b); result.w = 1; - print("RESULT $result"); yield result; - // .normalized(); - // todo - bone translations } }