| Draft documentation | Contained in the Draft distribution. |
Draft::Protozoa::Eml::Reference::Draft1 - CAD reference drawing-object
Points to one or more Draft::Drawing objects and places them in space.
A reference has some interesting attributes; coordinates for placing it in space, paths to Draft::Drawing objects and parts of them to ignore.
| Draft documentation | Contained in the Draft distribution. |
package Draft::Protozoa::Eml::Reference::Draft1;
use strict; use warnings; use Draft::Drawing; use Draft::Protozoa::Eml; use Draft::Entity::Reference; use vars qw /@ISA/; @ISA = qw /Draft::Protozoa::Eml Draft::Entity::Reference/;
sub _parse { my $self = shift; my $data = shift; $self->{0} = $data->{0}; $self->{location} = $data->{location}; $self->{ignore} = $data->{ignore}; } 1;