Returns a fixed-length list containing the x, y, and z values factored to be on a 0 to 1 scale.
x
y
z
List<double> toFactoredList() => toList().map((xyzValue) => xyzValue / 100).toList(growable: false);