scaled method
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;
}
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;
}