Draft::Protozoa::Eml::Reference::Draft1 - CAD reference drawing-object


Draft documentation Contained in the Draft distribution.

Index


Code Index:

NAME

Top

Draft::Protozoa::Eml::Reference::Draft1 - CAD reference drawing-object

SYNOPSIS

Top

Points to one or more Draft::Drawing objects and places them in space.

DESCRIPTION

Top

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;