mirror of
https://github.com/open-goal/jak-project
synced 2026-05-24 07:11:15 -04:00
a6d5c4eda3
* change * recognize vector float product and update tests
24 lines
616 B
Common Lisp
Vendored
Generated
24 lines
616 B
Common Lisp
Vendored
Generated
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; definition of type drawable-inline-array
|
|
(deftype drawable-inline-array (drawable)
|
|
((length int16 :offset 6)
|
|
)
|
|
:method-count-assert 18
|
|
:size-assert #x20
|
|
:flag-assert #x1200000020
|
|
)
|
|
|
|
;; definition for method 3 of type drawable-inline-array
|
|
(defmethod inspect drawable-inline-array ((obj drawable-inline-array))
|
|
(format #t "[~8x] ~A~%" obj (-> obj type))
|
|
(format #t "~Tid: ~D~%" (-> obj id))
|
|
(format #t "~Tbsphere: ~`vector`P~%" (-> obj bsphere))
|
|
(format #t "~Tlength: ~D~%" (-> obj length))
|
|
obj
|
|
)
|
|
|
|
;; failed to figure out what this is:
|
|
0
|