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;