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;
|
||||
Top = topLeft.Y;
|
||||
Right = topLeft.X;
|
||||
Bottom = topLeft.Y;
|
||||
Right = bottomRight.X;
|
||||
Bottom = bottomRight.Y;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
Loading…
Reference in a new issue