This site contains older material on Eiffel. For the main Eiffel page, see http://www.eiffel.com.

EiffelBase class
(HTML page generated by ISE Eiffel 4.2)

Eiffel Class
indexing
	description: "Basic mathematical constants. This class may be used as ancestor by classes needing its facilities.";
	status: "See notice at end of class";
	date: "$Date: 2007-03-30 11:10:11 -0800 (Fri, 30 Mar 2007) $";
	revision: "$Revision: 95354 $"

class MATH_CONST

feature {NONE} -- Access

	Pi: DOUBLE is 3.14159265358979323846;

	Sqrt2: DOUBLE is 1.41421356237309504880;
			-- Square root of 2

	Euler: DOUBLE is 2.7182818284590452354;
			-- Logarithm base

end -- class MATH_CONST