From ed7f00f4d3833877c1e3336ba2bb85d7e3733112 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Manuel=20Tom=C3=A1s?= Date: Thu, 14 Jan 2021 07:02:19 -0300 Subject: Calculate poly degree on new --- src/lerp.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lerp.rs') diff --git a/src/lerp.rs b/src/lerp.rs index 96506df..2ea444e 100644 --- a/src/lerp.rs +++ b/src/lerp.rs @@ -23,12 +23,12 @@ impl Lerp { pub fn lp(l: Box) -> Poly { match *l { - Lerp::Leaf(a, b) => Poly(vec![a, b - a]), + Lerp::Leaf(a, b) => Poly::new(vec![a, b - a]), Lerp::Node(a, b) => { let a = lp(a); let b = lp(b); let c = &b - &a; - &a + &(&c * &Poly(vec![0.0, 1.0])) + &a + &(&c * &Poly::new(vec![0.0, 1.0])) } } } -- cgit v1.2.3