Exemplo n.º 1
0
 /// <summary>Apply this Transformation to an existing Transformation, e.g.</summary>
 /// <remarks>
 /// Apply this Transformation to an existing Transformation, e.g. apply
 /// a scale effect to something that has already been rotated.
 /// </remarks>
 /// <param name="t"></param>
 public virtual void compose(android.view.animation.Transformation t)
 {
     mAlpha *= t.getAlpha();
     mMatrix.preConcat(t.getMatrix());
 }
Exemplo n.º 2
0
 /// <summary>Clones the specified transformation.</summary>
 /// <remarks>Clones the specified transformation.</remarks>
 /// <param name="t">The transformation to clone.</param>
 public virtual void set(android.view.animation.Transformation t)
 {
     mAlpha = t.getAlpha();
     mMatrix.set(t.getMatrix());
     mTransformationType = t.getTransformationType();
 }