Exemplo n.º 1
0
 public NpgsqlLSeg(double startx, double starty, double endx, double endy) : this()
 {
     Start = new NpgsqlPoint(startx, starty);
     End   = new NpgsqlPoint(endx, endy);
 }
Exemplo n.º 2
0
 public NpgsqlBox(NpgsqlPoint upperRight, NpgsqlPoint lowerLeft) : this()
 {
     UpperRight = upperRight;
     LowerLeft  = lowerLeft;
 }
Exemplo n.º 3
0
 public NpgsqlLSeg(NpgsqlPoint start, NpgsqlPoint end)
     : this()
 {
     Start = start;
     End   = end;
 }