Module CL_Rect

module CL_Rect: sig .. end

API documentation for the class CL_Rect

type t = {
   left : int;
   top : int;
   right : int;
   bottom : int;
}
val init : left:int -> top:int -> right:int -> bottom:int -> t
val of_size : width:int -> height:int -> t