home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / perl / cylinder3d.pm < prev    next >
Encoding:
Perl POD Document  |  2002-12-06  |  919 b   |  31 lines

  1. ############################################################
  2. #
  3. # Module: GD::Graph::cylinder3d
  4. #
  5. # Description: 
  6. # This is merely a wrapper around GD::Graph::cylinder 
  7. # to be used as an alias
  8. #
  9. # Created: 16 October 2002 by Jeremy Wadsack for Wadsack-Allen Digital Group
  10. #     Copyright (C) 2002 Wadsack-Allen. All rights reserved.
  11. ############################################################
  12. # Date      Modification                              Author
  13. # ----------------------------------------------------------
  14. #                                                          #
  15. ############################################################
  16. package GD::Graph::cylinder3d;
  17.  
  18. use strict;
  19. use GD;
  20. use GD::Graph;
  21. use GD::Graph::cylinder;
  22. use Carp;
  23.  
  24. @GD::Graph::cylinder3d::ISA = qw( GD::Graph::cylinder );
  25. $GD::Graph::cylinder3d::VERSION = '0.63';
  26.  
  27. # Inherit everything from GD::Graph::cylinder
  28.  
  29.  
  30. 1;
  31.