NAME
    perlcad - The PerlCAD Qt based drafting system

SYNOPSIS
      From the command line type:

      perlcad

      (The perlcad executable is installed in the bin directory of
       your OS - eg. /usr/bin/perlcad)

      From Perl:

      #!/usr/bin/perl -w

      use strict;
      use PerlCAD::Main;
      PerlCAD::Main->main;
      exit;

      Or from both:

      perl -MPerlCAD::Main -e main

      For a list of command line options, use the --help option, see the
      manpage for perlcad, or see the online documentation (which should
      exist as soon as there is something substantial to document).

      For a list of PerlCAD modules and internals - read on.

DESCRIPTION
    PerlCAD is a PerlQt based CAD / drafting program. It is intended to be
    scriptable and extensible and have most of the features found in AutoCAD
    (rendering and solid modelling will not be added until future releases -
    2.0 at least - but they are planned).

MODULES
    The main modules to worry about are.

    PerlCAD::MainWindow

    PerlCAD::Doc

    PerlCAD::View

    PerlCAD::Command

    All other modules will have documentation as time permits. If all else
    fails - view the source.

BUGS
    Using a scripting language to do ui intensive work. This could also be
    thought of as a feature.

LICENSE
    GNU GPL - see the included file named LICENSE. GNU GPL is used rather
    than the Perl Artistic as the Qt libraries linked to are GPL.

AUTHOR
    Paul Seamons [perlcad] [@] [seamons.com]

