package Template::Plugin::Color::HSV; use Template::Colour::Class base => 'Template::Plugin::Colour::HSV', throws => 'Color.HSV'; our $VERSION = 2.10; 1; __END__ =head1 NAME Template::Plugin::Color - Template plugin for color manipulation =head1 SYNOPSIS [% USE col = Color.HSV(50, 255, 128) %] [% col.hue %] # 50 [% col.sat %] / [% col.saturation %] # 255 [% col.val %] / [% col.value %] # 128 =head1 DESCRIPTION The C plugin module creates an object that represents a color in the HSV (hue, saturation, value) colour space. It is implemented as a subclass of L (note the spelling difference) and is provided as a convenience for Americans and other international users who spell 'C' as 'C'. Please see the documentation for L for further details. Wherever you see 'C', you can safely write it as 'C'. =head1 AUTHOR Andy Wardley Eabw@cpan.orgE, L =head1 COPYRIGHT Copyright (C) 2006-2012 Andy Wardley. All Rights Reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 SEE ALSO L