From 64eb69a7feb6b18405f8bd8aed09377f6f3de44e Mon Sep 17 00:00:00 2001 From: Tlekbai Ali Date: Thu, 25 Jun 2020 20:07:09 +0600 Subject: [PATCH] Update README.md Add clarification that interpolation point should be calculated within interval --- subjects/interpolation/README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/subjects/interpolation/README.md b/subjects/interpolation/README.md index a709faa8..f591d400 100644 --- a/subjects/interpolation/README.md +++ b/subjects/interpolation/README.md @@ -5,15 +5,16 @@ Create a function called `interpolation` that takes an object with 5 properties `step`, `start`, `end`, `callback` and `duration`. This function must calculate the interpolation points, (x, y), -from the `start` position to `end` position depending on the number of `steps`. +from the `start` position to `end` position depending on the number of `step`s. All the points must be calculated in the duration time. -For each interpolation point you must execute and pass as parameters to the callback the interpolation point ([x, y]) +For each interpolation point you must call `callback` function with parameter - interpolation point ([x, y]). +Each interpolation point should be calculated with interval of `duration / step`. ### Example ``` -steps = 5 +step = 5 start = 0 end = 1 duration = 10