ClippingBoundary Constructor (Double, Double, Double, Double)
|
Initializes a new instance of the ClippingBoundary class as a rectangular clipping boundary.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public ClippingBoundary(
double x,
double y,
double width,
double height
)
Public Sub New (
x As Double,
y As Double,
width As Double,
height As Double
)
public:
ClippingBoundary(
double x,
double y,
double width,
double height
)
new :
x : float *
y : float *
width : float *
height : float -> ClippingBoundary
CONSTRUCTOR(
x AS REAL8,
y AS REAL8,
width AS REAL8,
height AS REAL8
)
Parameters
- x
- Type: SystemDouble
Rectangle x-coordinate of the bottom-left corner in image local coordinates. - y
- Type: SystemDouble
Rectangle y-coordinate of the bottom-left corner in image local coordinates. - width
- Type: SystemDouble
Rectangle width in image local coordinates. - height
- Type: SystemDouble
Rectangle height in image local coordinates.
See Also