;;-*-Lisp-*- (in-package goal) ;; definition of type drawable-inline-array (deftype drawable-inline-array (drawable) ((length int16 :offset 6) ) ) ;; definition for method 3 of type drawable-inline-array (defmethod inspect ((this drawable-inline-array)) (format #t "[~8x] ~A~%" this (-> this type)) (format #t "~Tid: ~D~%" (-> this id)) (format #t "~Tbsphere: ~`vector`P~%" (-> this bsphere)) (format #t "~Tlength: ~D~%" (-> this length)) this ) ;; failed to figure out what this is: 0