A RunCoords represents a discrete set of values in a single dimension.
A RunCoords min and max are inclusive of the values; so a run of length 1 would have a min equal to max.
RunCoords
// length of 1 let coord:RunCoords = { min: 3, max: 3 } Copy
// length of 1 let coord:RunCoords = { min: 3, max: 3 }
A max of less than a min is invalid.
A RunCoords represents a discrete set of values in a single dimension.
A
RunCoords
min and max are inclusive of the values; so a run of length 1 would have a min equal to max.Remarks
A max of less than a min is invalid.