Exemplo n.º 1
0
 public Point2Dim dotMulti(Point2Dim a)
 {
     return(new Point2Dim(x * a.x, y * a.y));
 }
Exemplo n.º 2
0
 public void Clone(out Point2Dim p)
 {
     p   = new Point2Dim();
     p.x = this.x;
     p.y = this.y;;
 }