diff --git a/geometry.go b/geometry.go
index b55d13b4fb133a66652b61b61862852f17468b03..f9348398a5e580db38b180683cea2fb708829623 100644
--- a/geometry.go
+++ b/geometry.go
@@ -145,6 +145,8 @@ type Rect struct {
 }
 
 // R returns a new Rect with given the Min and Max coordinates.
+//
+// Note that the returned rectangle is not automatically normalized.
 func R(minX, minY, maxX, maxY float64) Rect {
 	return Rect{
 		Min: V(minX, minY),