NAME

Games::3D::Object - a renderable object

SYNOPSIS

use Games::3D::Object;

my $obj = Games::3D::Object->new( mass => 123, model => 'default' );
$obj->clear_force();
$obj->apply_force( $vector );
$obj->simulate();
$obj->render();

EXPORTS

Exports nothing on default.

DESCRIPTION

This package provides a base class for objects in 3D space. These derive from Games::3D::Mass (point-like mass) and Games::3D::Area.

METHODS

It features all the methods of Games::3D::Mass and Games::3D::Area, plus:

render

AUTHORS

(c) 2003, Tels <http://bloodgate.com/>

SEE ALSO

Games::3D::Area as well as SDL:App::FPS, SDL::App and SDL.