mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-01-17 14:18:13 +01:00
10 lines
166 B
OpenSCAD
10 lines
166 B
OpenSCAD
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();
|