translated method
Implementation
Float64List translated(double x, double y) {
final Float64List copy = Float64List.fromList(this);
copy[12] += x;
copy[13] += y;
return copy;
}
Float64List translated(double x, double y) {
final Float64List copy = Float64List.fromList(this);
copy[12] += x;
copy[13] += y;
return copy;
}