asRsTransform property

RSTransform asRsTransform

convenient method used by SpriteBatch

Implementation

RSTransform get asRsTransform {
  return RSTransform.fromComponents(
    scale: scale,
    anchorX: anchor.dx,
    anchorY: anchor.dy,
    rotation: rotation,
    translateX: translate.dx,
    translateY: translate.dy,
  );
}