运算符 - 方法

Point<T> operator -(
  1. Point<T>
)

this 中减去 other,好像这两个点都是向量。

返回结果“向量”作为 Point。

示例

var point = const Point(10, 100) - const Point(10, 10); // Point(0, 90)
point = const Point(-10, -20) - const Point(100, 100); // Point(-110, -120)

实现

Point<T> operator -(Point<T> other) {
  return Point<T>((x - other.x) as T, (y - other.y) as T);
}