| Server IP : 74.208.236.79 / Your IP : 216.73.216.156 Web Server : Apache System : Linux infongp-us50 4.4.400-icpu-108 #2 SMP Wed Feb 11 10:12:42 UTC 2026 x86_64 User : u93192080 ( 6162215) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /kunden/usr/share/perl5/Chart/ |
Upload File : |
## @file # Constants used in Chart:\n # PI # # written and maintained by # @author Chart Group at Geodetic Fundamental Station Wettzell (Chart@fs.wettzell.de) # @date 2015-03-01 # @version 2.4.10 # ## @class Chart::Constants # @brief Constants class defines all necessary constants for Class Chart # # Defined are \n # PI = 3.141...\n # \n # Usage:\n # @code # use Chart::Constants; # my $pi = Chart::Constants::PI; # @endcode package Chart::Constants; use strict; # set up initial constant values use constant PI => 4 * atan2( 1, 1 ); # be a good module 1;