remove auto norm from R (Rect constructor)

This commit is contained in:
faiface 2017-03-25 19:45:11 +01:00
parent 379b4df667
commit 5d98f28ca0
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ func R(minX, minY, maxX, maxY float64) Rect {
return Rect{
Min: V(minX, minY),
Max: V(maxX, maxY),
}.Norm()
}
}
// Norm returns the Rect in normal form, such that Max is component-wise greater or equal than Min.