Ejemplo n.º 1
0
 public static ValPosCrt SubPos(this ValPosCrt self, ValPosCrt target)
 => new ValPosCrt(self.X - target.X, self.Y - target.Y, self.Value);
Ejemplo n.º 2
0
 public static ValPosCrt AddPos(this ValPosCrt self, ValPosCrt target)
 => new ValPosCrt(self.X + target.X, self.Y + target.Y, self.Value);