1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-01 02:33:00 +02:00
This commit is contained in:
Justin Lin
2022-04-13 09:10:25 +08:00
parent 9b3eee5993
commit 3f6211d8a6
2 changed files with 11 additions and 0 deletions

9
test/util/test_lerp.scad Normal file
View File

@@ -0,0 +1,9 @@
use <util/lerp.scad>;
module test_lerp() {
echo("==== test_lerp ====");
assert(lerp([0, 0, 0], [100, 100, 100], 0.5) == [50, 50, 50]);
}
test_lerp();