public Point2Dim dotMulti(Point2Dim a) { return(new Point2Dim(x * a.x, y * a.y)); }
public void Clone(out Point2Dim p) { p = new Point2Dim(); p.x = this.x; p.y = this.y;; }