;;-*-Lisp-*- (in-package goal) ;; definition for symbol EulSafe, type (array int32) (define EulSafe (new 'static 'boxed-array :type int32 0 1 2 0)) ;; definition for symbol EulNext, type (array int32) (define EulNext (new 'static 'boxed-array :type int32 1 2 0 1)) ;; definition of type euler-angles (deftype euler-angles (vector) () :method-count-assert 9 :size-assert #x10 :flag-assert #x900000010 ) ;; definition for method 3 of type euler-angles ;; INFO: Used lq/sq (defmethod inspect euler-angles ((obj euler-angles)) (when (not obj) (set! obj obj) (goto cfg-4) ) (format #t "[~8x] ~A~%" obj 'euler-angles) (format #t "~1Tdata[4] @ #x~X~%" (&-> obj x)) (format #t "~1Tx: ~f~%" (-> obj x)) (format #t "~1Ty: ~f~%" (-> obj y)) (format #t "~1Tz: ~f~%" (-> obj z)) (format #t "~1Tw: ~f~%" (-> obj w)) (format #t "~1Tquad: ~D~%" (-> obj quad)) (label cfg-4) obj ) ;; failed to figure out what this is: 0