Packageme.cosmodro.yaxs.transitions.shatter
Classpublic class Triangle
InheritanceTriangle Inheritance Object

Data structure to keep track of 3 points of a triangle, and associated transformation matrix for animation



Public Properties
 PropertyDefined By
  A : Point
get first point
Triangle
  B : Point
get second point
Triangle
  C : Point
get third point
Triangle
  delta : Matrix
the transformation matrix for animation
Triangle
  points : Vector.<Point>
the 3 points
Triangle
Public Methods
 MethodDefined By
  
Triangle(a:Point = null, b:Point = null, c:Point = null)
Triangle
Property Detail
Aproperty
A:Point

get first point


Implementation
    public function get A():Point
    public function set A(value:Point):void
Bproperty 
B:Point

get second point


Implementation
    public function get B():Point
    public function set B(value:Point):void
Cproperty 
C:Point

get third point


Implementation
    public function get C():Point
    public function set C(value:Point):void
deltaproperty 
public var delta:Matrix

the transformation matrix for animation

pointsproperty 
public var points:Vector.<Point>

the 3 points

Constructor Detail
Triangle()Constructor
public function Triangle(a:Point = null, b:Point = null, c:Point = null)



Parameters
a:Point (default = null)
 
b:Point (default = null)
 
c:Point (default = null)