Closed FilatovAV closed 3 years ago
Invalid check in the Insert constructor
now
if (scale <= 0) { throw new ArgumentOutOfRangeException(nameof(scale), scale, "The Insert scale must be greater than zero."); }
must be
if (scale == 0) { throw new ArgumentOutOfRangeException(nameof(scale), scale, "The Insert scale should not be zero."); }
Negative scale values should be allowed in the Insert constructor as it is in the Scale property.
Invalid check in the Insert constructor
now
must be