scaled method

Float64List scaled(
  1. double x,
  2. double y
)

Implementation

Float64List scaled(double x, double y) {
  final Float64List copy = Float64List.fromList(this);

  copy[0] *= x;
  copy[1] *= x;
  copy[4] *= y;
  copy[5] *= y;

  return copy;
}