/* * Copyright 2007 (c) Andre Stubbe, http://www.andrestubbe.com * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limitation the rights to use, * copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following * conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ package { import flash.display.Sprite; import flash.events.Event; import flash.events.MouseEvent; import org.papervision3d.cameras.Camera3D; import org.papervision3d.materials.BitmapFileMaterial; import org.papervision3d.objects.Plane; import org.papervision3d.scenes.MovieScene3D; import org.papervision3d.events.InteractiveScene3DEvent; [SWF(width='800',height='400',backgroundColor='0x000000',frameRate='30')] public class GraffitiPlane extends Sprite { private var container :Sprite; private var scene :MovieScene3D; private var camera :Camera3D; private var plane :Plane; public function GraffitiPlane() { container = new Sprite; container.x = 400; container.y = 200; addChild( container ); scene = new MovieScene3D( container ); camera = new Camera3D(); camera.z = -500; camera.zoom = 7; // create Bitmap texture // please place a "texture.jpg" file to your code root or change the path var material:BitmapFileMaterial = new BitmapFileMaterial("http://pv3world.com/labs/graffitiplane/graffititexture.gif"); material.doubleSided = true; material.smooth = true; //BitmapFileMaterial.interactive = true; //create plane plane = new Plane( material, 800, 300, 3, 3); // register plane scene.addChild( plane ); stage.addEventListener( Event.ENTER_FRAME, onEnterFrame ); } private function onEnterFrame( event: Event ): void { // influence the camera with the hover method camera.hover(1, (200-mouseX)*.009, (200-mouseY)*.009); // render scene scene.renderCamera( camera ); } } }