Skip to content

Commit

Permalink
revert codes for collision model making according to euslisp/jskeus#93
Browse files Browse the repository at this point in the history
  • Loading branch information
nozawa authored and nozawa committed Jun 10, 2014
1 parent b9f19ac commit c9d6c82
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions models/darwin.l
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,26 @@
))
args)
))
;; make collision model from faces or gl-vertices
(:make-collision-model-for-links
(&key (fat 0) (collision-func 'pqp-collision-check) ((:links ls) (send self :links)))
(dolist (ll ls)
(unless (send ll :get (read-from-string (format nil ":~Amodel"
(string-right-trim "-COLLISION-CHECK" (string collision-func)))))
(send ll
(read-from-string
(format nil ":make-~Amodel"
(string-right-trim "-COLLISION-CHECK" (string collision-func))))
:fat fat
:faces (flatten (mapcar #'(lambda (x)
(cond
((find-method x :def-gl-vertices)
(send (x . glvertices) :convert-to-faces :wrt :world))
(t
(send x :faces))))
(send ll :bodies)))))
)
)
)

;; copy euscollada-body class definition from euscollada/src/euscollada-robot.l
Expand Down

0 comments on commit c9d6c82

Please sign in to comment.