Initializes a new instance of the
Rectangle class
Namespace:
VelocityDBExtensions.Spatial
Assembly:
VelocityDBExtensions (in VelocityDBExtensions.dll) Version: 11.1.0.0 (11.1.0)
Syntax public Rectangle(
double x1,
double y1,
double x2,
double y2
)
Public Sub New (
x1 As Double,
y1 As Double,
x2 As Double,
y2 As Double
)
public:
Rectangle(
double x1,
double y1,
double x2,
double y2
)
new :
x1 : float *
y1 : float *
x2 : float *
y2 : float -> Rectangle
Parameters
- x1
- Type: SystemDouble
coordinate of any corner of the rectangle - y1
- Type: SystemDouble
(see x1) - x2
- Type: SystemDouble
coordinate of the opposite corner - y2
- Type: SystemDouble
(see x2)
See Also