| Panotools-Script documentation | view source | Contained in the Panotools-Script distribution. |
Panotools::Script::Line - Panorama Tools script data
Base class for a line in a panotools script
A line starts with a single letter identifier then a series of namevalue items separated by whitespace
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;
| Panotools-Script documentation | view source | Contained in the Panotools-Script distribution. |