applyToPoint method

Offset applyToPoint(
  1. Offset point
)

Implementation

Offset applyToPoint(Offset point) {
  final x = a * point.dx + c * point.dy + tx;
  final y = b * point.dx + d * point.dy + ty;
  return Offset(x, y);
}