When creating models/importing models into flash, and testing code in run time etc, sometimes it is very usefull to have Statistics displayed on the runtime page, to see how well your program is running, any memory leaks etc..
This however is very easy to set up in Papervision3D.
First you need to import StatView:
import org.papervision3d.view.stats.StatsView;
If you have employed BasicView for your scene setup, add
private var view:StatsView;
in your class, and then call it using:
addChild(new StatsView(renderer));
Thats it! very simple, you should end up with something looking like this in your window