mirror of
https://github.com/open-goal/jak-project
synced 2026-06-09 20:50:55 -04:00
25 lines
916 B
Common Lisp
25 lines
916 B
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: trigonometry-h.gc
|
|
;; name in dgo: trigonometry-h
|
|
;; dgos: ENGINE, GAME
|
|
|
|
;; DECOMP BEGINS
|
|
|
|
;; no code!
|
|
(define-extern deg-diff (function float float float))
|
|
(define-extern sin (function float float))
|
|
(define-extern sincos! (function vector float int))
|
|
(define-extern vector-sin-rad! (function vector vector vector))
|
|
(define-extern vector-sincos! (function vector vector vector int))
|
|
(define-extern vector-sincos-rad! (function vector vector vector int))
|
|
(define-extern sincos-rad! (function vector float int))
|
|
(define-extern vector-rad<-vector-deg/2! (function vector vector int))
|
|
(define-extern cos (function float float))
|
|
(define-extern atan-series-rad (function float float))
|
|
(define-extern atan2-rad (function float float float))
|
|
(define-extern atan (function float float float))
|
|
(define-extern acos (function float float))
|
|
(define-extern acos-rad (function float float))
|