| Ogre documentation | Contained in the Ogre distribution. |
Ogre::Quaternion
use Ogre; use Ogre::Quaternion; # (for now see examples/README.txt)
See the online API documentation athttp://www.ogre3d.org/docs/api/html/classOgre_1_1Quaternion.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.
This is an operator overload method; don't call it yourself.
This is an operator overload method; don't call it yourself.
This is an operator overload method; don't call it yourself.
Parameter types
Returns
Parameter types
Returns
Parameter types
Returns
Parameter types
Returns
Parameter types
Returns
Parameter types
Returns
Returns
Returns
Returns
Parameter types
Returns
Returns
Returns
Parameter types
Returns
Parameter types
Returns
Parameter types
Returns
Parameter types
Returns
Returns
Returns
Returns
Returns
Parameter types
Returns
Parameter types
Returns
Parameter types
Returns
Parameter types
Returns
Scott Lanning <slanning@cpan.org>
For licensing information, see README.txt .
| Ogre documentation | Contained in the Ogre distribution. |
package Ogre::Quaternion; use strict; use warnings; # xxx: this should be in XS, but I can't get it to work use overload '==' => \&quat_eq_xs, '!=' => \&quat_ne_xs, '+' => \&quat_plus_xs, '-' => \&quat_minus_xs, '*' => \&quat_mult_xs, '0+' => sub { $_[0] }, 'neg' => \&quat_neg_xs, ; 1; __END__