2020-04-29 00:11:56 +02:00
|
|
|
;;; float-sup.el --- define some constants useful for floating point numbers. -*- lexical-binding:t -*-
|
2003-05-30 23:31:15 +00:00
|
|
|
|
2022-01-01 02:45:51 -05:00
|
|
|
;; Copyright (C) 1985-1987, 2001-2022 Free Software Foundation, Inc.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
2019-05-25 13:43:06 -07:00
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
2003-05-30 23:31:15 +00:00
|
|
|
;; Keywords: internal
|
2010-08-29 12:17:13 -04:00
|
|
|
;; Package: emacs
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 03:21:21 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2003-05-30 23:31:15 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 03:21:21 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 15:52:52 -07:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2010-10-21 21:03:55 -07:00
|
|
|
;; Provide an easy hook to tell if we are running with floats or not.
|
|
|
|
;; Define pi and e via math-lib calls (much less prone to killer typos).
|
2010-09-19 11:49:21 +02:00
|
|
|
(defconst float-pi (* 4 (atan 1)) "The value of Pi (3.1415926...).")
|
2019-06-12 17:40:42 +02:00
|
|
|
(with-suppressed-warnings ((lexical pi))
|
|
|
|
(defconst pi float-pi
|
|
|
|
"Obsolete since Emacs-23.3. Use `float-pi' instead."))
|
2021-04-12 12:53:53 -04:00
|
|
|
(make-obsolete-variable 'pi 'float-pi "23.3")
|
2012-06-08 09:18:26 -04:00
|
|
|
(internal-make-var-non-special 'pi)
|
2007-02-09 11:23:37 +00:00
|
|
|
|
2010-09-19 11:49:21 +02:00
|
|
|
(defconst float-e (exp 1) "The value of e (2.7182818...).")
|
2003-05-30 23:31:15 +00:00
|
|
|
|
2010-09-19 11:49:21 +02:00
|
|
|
(defconst degrees-to-radians (/ float-pi 180.0)
|
2003-05-30 23:31:15 +00:00
|
|
|
"Degrees to radian conversion constant.")
|
2010-09-19 11:49:21 +02:00
|
|
|
(defconst radians-to-degrees (/ 180.0 float-pi)
|
2003-05-30 23:31:15 +00:00
|
|
|
"Radian to degree conversion constant.")
|
|
|
|
|
2010-10-21 21:03:55 -07:00
|
|
|
;; These expand to a single multiply by a float when byte compiled.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
(defmacro degrees-to-radians (x)
|
2010-09-27 22:11:33 +02:00
|
|
|
"Convert X from degrees to radians."
|
2010-09-19 11:49:21 +02:00
|
|
|
(list '* degrees-to-radians x))
|
2003-05-30 23:31:15 +00:00
|
|
|
(defmacro radians-to-degrees (x)
|
2010-09-27 22:11:33 +02:00
|
|
|
"Convert X from radians to degrees."
|
2010-09-19 11:49:21 +02:00
|
|
|
(list '* radians-to-degrees x))
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
(provide 'lisp-float-type)
|
|
|
|
|
|
|
|
;;; float-sup.el ends here
|