home *** CD-ROM | disk | FTP | other *** search
- ;;; compiled by @win386 on Thu Apr 29 20:42:55 1993
- ;;; from file c:/src/winemacs/lisp/prim/float-su.el
- ;;; emacs version 19.4 (Win-Emacs 1.00.04 beta).
- ;;; bytecomp version 2.09; 16-jan-93.
- ;;; optimization is on.
- ;;; this file uses opcodes which do not exist in Emacs18.
-
- (if (and (boundp 'emacs-version)
- (or (and (boundp 'epoch::version) epoch::version)
- (string-lessp emacs-version "19")))
- (error "This file was compiled for Emacs19."))
-
- (byte-code "└┴!¼ä┬├!ê─┼!ç" [fboundp atan error "Floating point was disabled at compile time" provide lisp-float-type] 2)
- (defconst pi (byte-code "└┴!┬_ç" [atan 1 4] 2) "\
- The value of Pi (3.1415926...)")
- (defconst e (exp 1) "\
- The value of e (2.7182818...)")
- (defconst degrees-to-radians (/ pi 180.0) "\
- Degrees to radian conversion constant")
- (defconst radians-to-degrees (/ 180.0 pi) "\
- Radian to degree conversion constant")
- (fset 'degrees-to-radians '(macro . #[(x) "└ ┬ÑEç" [* pi 180.0 x] 3 "\
- Convert ARG from degrees to radians."]))
- (fset 'radians-to-degrees '(macro . #[(x) "└┴\nÑEç" [* 180.0 pi x] 3 "\
- Convert ARG from radians to degrees."]))
-