deflate method
Returns a new LineSegment with same direction but reduced by amount
on both sides.
Implementation
LineSegment deflate(double amount) {
return inflate(-amount);
}
Returns a new LineSegment with same direction but reduced by amount
on both sides.
LineSegment deflate(double amount) {
return inflate(-amount);
}