toFactoredList method

List<double> toFactoredList()

Returns a fixed-length list containing the x, y, and z values factored to be on a 0 to 1 scale.

Implementation

List<double> toFactoredList() =>
    toList().map((xyzValue) => xyzValue / 100).toList(growable: false);