Draft::Entity::Line - CAD line drawing-object


Draft documentation Contained in the Draft distribution.

Index


Code Index:

NAME

Top

Draft::Entity::Line - CAD line drawing-object

SYNOPSIS

Top

A line consists of two points.

DESCRIPTION

Top

Though a line consists of just two points, it should really be extended to an arbitrary number of points - A polyline.


Draft documentation Contained in the Draft distribution.
package Draft::Entity::Line;

use strict;
use warnings;

# FIXME shouldn't depend on Tk
use Draft::TkGui::Entity::Line;
use vars qw /@ISA/;
@ISA = qw /Draft::TkGui::Entity::Line/;

sub Process {}

1;