Example #1
0
 public static ValPosPlr SubPos(this ValPosPlr self, ValPosPlr target)
 => new ValPosPlr(self.T - target.T, self.R - target.R, self.Value);
Example #2
0
 public static ValPosPlr AddPos(this ValPosPlr self, ValPosPlr target)
 => new ValPosPlr(self.T + target.T, self.R + target.R, self.Value);