Update ViewRect.cs

This commit is contained in:
Clemens 2021-11-13 00:28:36 +01:00
parent 2b7414eef4
commit 68dbebcaac

View file

@ -9,12 +9,6 @@ namespace MapControl
/// </summary> /// </summary>
public struct ViewRect public struct ViewRect
{ {
public double X { get; }
public double Y { get; }
public double Width { get; }
public double Height { get; }
public double Rotation { get; }
public ViewRect(double x, double y, double width, double height, double rotation) public ViewRect(double x, double y, double width, double height, double rotation)
{ {
X = x; X = x;
@ -23,5 +17,11 @@ namespace MapControl
Height = height; Height = height;
Rotation = rotation; Rotation = rotation;
} }
public double X { get; }
public double Y { get; }
public double Width { get; }
public double Height { get; }
public double Rotation { get; }
} }
} }