home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Templates / Flash / flashmo_101_3d_carousel / org / papervision3d / materials / WireframeMaterial.as < prev   
Text File  |  2007-07-18  |  4KB  |  107 lines

  1. /*
  2.  *  PAPER    ON   ERVIS  NPAPER ISION  PE  IS ON  PERVI IO  APER  SI  PA
  3.  *  AP  VI  ONPA  RV  IO PA     SI  PA ER  SI NP PE     ON AP  VI ION AP
  4.  *  PERVI  ON  PE VISIO  APER   IONPA  RV  IO PA  RVIS  NP PE  IS ONPAPE
  5.  *  ER     NPAPER IS     PE     ON  PE  ISIO  AP     IO PA ER  SI NP PER
  6.  *  RV     PA  RV SI     ERVISI NP  ER   IO   PE VISIO  AP  VISI  PA  RV3D
  7.  *  ______________________________________________________________________
  8.  *  papervision3d.org ┬ò blog.papervision3d.org ┬ò osflash.org/papervision3d
  9.  */
  10.  
  11. /*
  12.  * Copyright 2006 (c) Carlos Ulloa Matesanz, noventaynueve.com.
  13.  *
  14.  * Permission is hereby granted, free of charge, to any person
  15.  * obtaining a copy of this software and associated documentation
  16.  * files (the "Software"), to deal in the Software without
  17.  * restriction, including without limitation the rights to use,
  18.  * copy, modify, merge, publish, distribute, sublicense, and/or sell
  19.  * copies of the Software, and to permit persons to whom the
  20.  * Software is furnished to do so, subject to the following
  21.  * conditions:
  22.  *
  23.  * The above copyright notice and this permission notice shall be
  24.  * included in all copies or substantial portions of the Software.
  25.  *
  26.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  27.  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  28.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  29.  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  30.  * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  31.  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  32.  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  33.  * OTHER DEALINGS IN THE SOFTWARE.
  34.  */
  35.  
  36. // __________________________________________________________________________ WIREFRAME MATERIAL
  37.  
  38. package org.papervision3d.materials
  39. {
  40. import org.papervision3d.core.proto.MaterialObject3D;
  41. import org.papervision3d.core.draw.IFaceDrawer;
  42. import org.papervision3d.core.geom.Face3D;
  43. import flash.display.Graphics;
  44. import org.papervision3d.core.geom.Vertex2D;
  45. import flash.geom.Matrix;
  46. import org.papervision3d.objects.DisplayObject3D;
  47.  
  48. /**
  49. * The WireframeMaterial class creates a wireframe material, where only the outlines of the faces are drawn.
  50. * <p/>
  51. * Materials collects data about how objects appear when rendered.
  52. */
  53. public class WireframeMaterial extends MaterialObject3D implements IFaceDrawer
  54. {
  55.     // ______________________________________________________________________ NEW
  56.  
  57.     /**
  58.     * The WireframeMaterial class creates a wireframe material, where only the outlines of the faces are drawn.
  59.     *
  60.     * @param    asset                A BitmapData object.
  61.     * @param    initObject            [optional] - An object that contains additional properties with which to populate the newly created material.
  62.     */
  63.     public function WireframeMaterial( color:Number=0xFF00FF, alpha:Number=100, initObject:Object=null )
  64.     {
  65.         super( initObject );
  66.  
  67.         this.lineColor   = color;
  68.         this.lineAlpha   = alpha;
  69.  
  70.         this.doubleSided = false;
  71.     }
  72.     
  73.     /**
  74.      *  drawFace3D
  75.      */
  76.     override public function drawFace3D(instance:DisplayObject3D, face3D:Face3D, graphics:Graphics, v0:Vertex2D, v1:Vertex2D, v2:Vertex2D):int
  77.     {
  78.         var x0:Number = v0.x;
  79.         var y0:Number = v0.y;
  80.         var x1:Number = v1.x;
  81.         var y1:Number = v1.y;
  82.         var x2:Number = v2.x;
  83.         var y2:Number = v2.y;
  84.         
  85.         graphics.lineStyle( 0, lineColor, lineAlpha );
  86.         graphics.moveTo( x0, y0 );
  87.         graphics.lineTo( x1, y1 );
  88.         graphics.lineTo( x2, y2 );
  89.         graphics.lineTo( x0, y0 );
  90.         graphics.lineStyle();
  91.         
  92.         return 1;
  93.     }
  94.  
  95.     // ______________________________________________________________________ TO STRING
  96.  
  97.     /**
  98.     * Returns a string value representing the material properties in the specified WireframeMaterial object.
  99.     *
  100.     * @return    A string.
  101.     */
  102.     public override function toString(): String
  103.     {
  104.         return 'WireframeMaterial - color:' + this.lineColor + ' alpha:' + this.lineAlpha;
  105.     }
  106. }
  107. }