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


Panotools-Script documentation  | view source Contained in the Panotools-Script distribution.

Index


NAME

Top

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

SYNOPSIS

Top

Base class for a line in a panotools script

DESCRIPTION

Top

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

USAGE

Top

  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.