Implement easing curve in the runtime

This commit is contained in:
Olivier Goffart 2020-07-29 15:20:28 +02:00
parent feec73674f
commit 46a011683f
11 changed files with 93 additions and 15 deletions

View file

@ -166,6 +166,7 @@ fn to_js_value<'cx>(
}
Value::Color(c) => JsNumber::new(cx, c.as_argb_encoded()).as_value(cx),
Value::PathElements(_) => todo!(),
Value::EasingCurve(_) => todo!(),
})
}