• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

inc/Module/H16-Feb-2014-2,0751,545

lib/Geometry/H16-Feb-2014-1,382483

t/H16-Feb-2014-311236

ChangesH A D16-Feb-20142.2 KiB10075

MANIFESTH A D25-Jan-2014882 3938

META.ymlH A D16-Feb-2014691 3332

Makefile.PLH A D25-Jan-2014394 1912

READMEH A D25-Jan-20141.2 KiB5131

README

1Geometry::Primitive - Primitive Geometry Entities
2
3Geometry::Primitive is a device and library agnostic system for representing
4geometric entities such as points, lines and shapes.  It provides simple
5objects and many convenience methods you would expect from a simple geometry
6library.
7
8    use Geometry::Primitive::Point;
9
10    my $foo = Geometry::Primitive::Point->new(x => 1, y => 3);
11    ...
12
13INSTALLATION
14
15To install this module, run the following commands:
16
17	perl Makefile.PL
18	make
19	make test
20	make install
21
22SUPPORT AND DOCUMENTATION
23
24After installing, you can find documentation for this module with the
25perldoc command.
26
27    perldoc Geometry::Primitive
28
29You can also look for information at:
30
31    RT, CPAN's request tracker
32        http://rt.cpan.org/NoAuth/Bugs.html?Dist=Geometry-Primitive
33
34    AnnoCPAN, Annotated CPAN documentation
35        http://annocpan.org/dist/Geometry-Primitive
36
37    CPAN Ratings
38        http://cpanratings.perl.org/d/Geometry-Primitive
39
40    Search CPAN
41        http://search.cpan.org/dist/Geometry-Primitive
42
43
44COPYRIGHT AND LICENCE
45
46Copyright (C) 2008 Cory Watson
47
48This program is free software; you can redistribute it and/or modify it
49under the same terms as Perl itself.
50
51