算子 + 方法

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

other 添加到 this,就像这两个点都是向量一样。

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

示例

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

实现

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