transform method

CardTransform transform(
  1. CardTransform other,
  2. double transitionPos
)

transitionPos is a position value of a swipe for example. other is the position, scale, rotation which the current CardTransform need to be transformed to.

Implementation

CardTransform transform(CardTransform other, double transitionPos) =>
    CardTransform(
      x: _transformValue(x, other.x, transitionPos),
      y: _transformValue(y, other.y, transitionPos),
      angle: _transformValue(angle, other.angle, transitionPos),
      scale: _transformValue(scale, other.scale, transitionPos),
      opacity: _transformValue(opacity, other.opacity, transitionPos),
    );