Ogre::Plane - Ogre::Plane documentation


Ogre documentation Contained in the Ogre distribution.

Index


Code Index:

NAME

Top

Ogre::Plane

SYNOPSIS

Top

  use Ogre;
  use Ogre::Plane;
  # (for now see examples/README.txt)

DESCRIPTION

Top

See the online API documentation athttp://www.ogre3d.org/docs/api/html/classOgre_1_1Plane.html

Note: this Perl binding is currently experimental and subject to API changes.

CLASS METHODS

Top

Ogre::Plane->new(...)

Parameter types

... : this varies... (sorry, look in the .xs file)

Returns

Plane *

Ogre::Plane->DESTROY()

This method is called automatically; don't call it yourself.

INSTANCE METHODS

Top

$obj->getDistance($rkPoint)

Parameter types

$rkPoint : Vector3 *

Returns

Real

$obj->normalise()

Returns

Real

$obj->d()

Returns

Real

$obj->setD($d)

Parameter types

$d : Real

Returns

void

$obj->normal()

Returns

Vector3 *

$obj->setNormal($normal)

Parameter types

$normal : Vector3 *

Returns

void

AUTHOR

Top

Scott Lanning <slanning@cpan.org>

For licensing information, see README.txt .


Ogre documentation Contained in the Ogre distribution.

package Ogre::Plane;

use strict;
use warnings;



########## GENERATED CONSTANTS BEGIN
require Exporter;
unshift @Ogre::Plane::ISA, 'Exporter';

our %EXPORT_TAGS = (
	'Side' => [qw(
		NO_SIDE
		POSITIVE_SIDE
		NEGATIVE_SIDE
		BOTH_SIDE
	)],
);

$EXPORT_TAGS{'all'} = [ map { @{ $EXPORT_TAGS{$_} } } keys %EXPORT_TAGS ];
our @EXPORT_OK = @{ $EXPORT_TAGS{'all'} };
our @EXPORT = ();
########## GENERATED CONSTANTS END

1;

__END__