|
Server IP : 82.165.83.148 / Your IP : 216.73.217.113 Web Server : Apache System : Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux User : u67745506 ( 4824611) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF Directory (0755) : /etc/../lib/python2.7/../../share/awk/../perl5/Chart/ |
| [ Home ] | [ C0mmand ] | [ 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;
