mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-01-05 16:19:57 +01:00
Update ViewRect.cs
This commit is contained in:
parent
2b7414eef4
commit
68dbebcaac
|
|
@ -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; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue