Panotools::Script::Line.3pm

Langue: en

Version: 2008-01-13 (fedora - 05/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

Panotools::Script::Line - Panorama Tools script data

SYNOPSIS

Base class for a line in a panotools script

DESCRIPTION

A line starts with a single letter identifier then a series of namevalue items separated by whitespace

USAGE

   my $line = new Panotools::Script::Line::Foo;
 
 
   my $identifier = $line->Identifier;
 
 
   $line->Parse ('f a1.0 b2.0 bar3.0');
 
 
   my $string = $line->Assemble;
 
 
   $line->Set (a => 'something', b => 2);
 
 

Clone a line object

  $clone = $l->Clone;