topical media & game development

talk show tell print

student-ar-org-papervision3d-core-animation-AnimationKeyFrame3D.ax

student-ar-org-papervision3d-core-animation-AnimationKeyFrame3D.ax [swf] flex


  package org.papervision3d.core.animation
  {
          

author: Tim Knip

   
          public class @ax-student-ar-org-papervision3d-core-animation-AnimationKeyFrame3D
          {
                  public static const INTERPOLATION_LINEAR:String = "LINEAR";
                  public static const INTERPOLATION_BEZIER:String = "BEZIER";
                  
                  

  
                  public var name:String;
                  
                  

  
                  public var time:Number;
                  
                  

  
                  public var output:Array;
                  
                  

  
                  public var interpolation:String;
                  
                  

  
                  public var inTangent:Array;
                  
                  

  
                  public var outTangent:Array;
                  
                  
Constructor.
parameter: name @param time @param output @param interpolation @param inTangent @param outTangent

   
                  public function @ax-student-ar-org-papervision3d-core-animation-AnimationKeyFrame3D(name:String, time:Number, output:Array = null, interpolation:String = null, inTangent:Array = null, outTangent:Array = null)
                  {
                          this.name = name;
                          this.time = time;
                          this.output = output || new Array();
                          this.interpolation = interpolation || INTERPOLATION_LINEAR;
                          this.inTangent = inTangent || new Array();
                          this.outTangent = outTangent || new Array();
                  }
          }
  }


(C) Æliens 04/09/2009

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.