| Draft documentation | Contained in the Draft distribution. |
Draft::Entity::Line - CAD line drawing-object
A line consists of two points.
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;