Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[irteus/irtutil.l] Enable to pass integer time-list to interpolator #625

Merged
merged 3 commits into from
Oct 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion irteus/irtutil.l
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@
position-list: list of control point
time-list: list of time from start for each control point, time in first contrall point is zero, so length of this list is length of control point minus 1"
(setq position-list pl)
(setq time-list tl)
(setq time-list (mapcar #'float tl)) ;; float conversion is for compiled eps> (see https://github.com/euslisp/EusLisp/issues/406)
(if (/= (length position-list) (1+ (length time-list)))
(warning-message 1 "length of position-list must be length of time-list + 1"))
(setq time 0.0)
Expand Down
15 changes: 15 additions & 0 deletions irteus/test/interpolator.l
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,15 @@
))
))

;; https://github.com/euslisp/jskeus/pull/625
(defun test-interpolators-625
(&optional (ip-class linear-interpolator))
(let ((ip (instance ip-class :init)))
(send ip :reset :position-list (list #f(1 2 3) #f(3 4 5) #f(1 2 3)) :time-list (list 1000 1800))
(send ip :start-interpolation)
(send ip :pass-time 200)
(assert (send ip :interpolatingp))))

(deftest test-linear-interpolator ()
(let ((res (test-interpolators linear-interpolator)))))

Expand All @@ -257,6 +266,12 @@
(deftest test-minjerk-absolute-interpolator-457-0005 ()
(let ((res (test-interpolators-457 minjerk-interpolator 0.0005)))))

(deftest test-linear-interpolator-625 ()
(let ((res (test-interpolators-625 linear-interpolator)))))

(deftest test-minjerk-interpolator-625 ()
(let ((res (test-interpolators-625 minjerk-interpolator)))))


#|
(load "~/prog/euslib/jsk/gnuplotlib.l")
Expand Down