Fixed issue [#2072]: "Box2 constructor bug".
This commit is contained in:
parent
546decd579
commit
cf97ff84a9
1 changed files with 2 additions and 2 deletions
|
@ -45,8 +45,8 @@ namespace OpenTK
|
||||||
{
|
{
|
||||||
Left = topLeft.X;
|
Left = topLeft.X;
|
||||||
Top = topLeft.Y;
|
Top = topLeft.Y;
|
||||||
Right = topLeft.X;
|
Right = bottomRight.X;
|
||||||
Bottom = topLeft.Y;
|
Bottom = bottomRight.Y;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
Loading…
Reference in a new issue