| Ogre documentation | Contained in the Ogre distribution. |
Ogre::Degree
use Ogre; use Ogre::Degree; # (for now see examples/README.txt)
See the online API documentation athttp://www.ogre3d.org/docs/api/html/classOgre_1_1Degree.html
Note: this Perl binding is currently experimental and subject to API changes.
Parameter types
Returns
This method is called automatically; don't call it yourself.
This is an operator overload method; don't call it yourself.
Returns
Returns
Returns
Scott Lanning <slanning@cpan.org>
For licensing information, see README.txt .
| Ogre documentation | Contained in the Ogre distribution. |
package Ogre::Degree; use strict; use warnings; # xxx: this should be in XS, but I can't get it to work use overload '==' => \°_eq_xs, '!=' => \°_ne_xs, '<' => \°_lt_xs, '>' => \°_gt_xs, '<=' => \°_le_xs, '>=' => \°_ge_xs, '+' => \°_plus_xs, '-' => \°_minus_xs, '*' => \°_mult_xs, 'neg' => \°_neg_xs, ; 1; __END__