From b421d4e7e06f977436b6e6195b95ca44d884e0c0 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sun, 2 Jun 2019 20:50:28 -0400 Subject: Add guile-sdl2 manual. --- manuals/guile-sdl2/Rects.html | 133 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 133 insertions(+) create mode 100644 manuals/guile-sdl2/Rects.html (limited to 'manuals/guile-sdl2/Rects.html') diff --git a/manuals/guile-sdl2/Rects.html b/manuals/guile-sdl2/Rects.html new file mode 100644 index 0000000..1b5693f --- /dev/null +++ b/manuals/guile-sdl2/Rects.html @@ -0,0 +1,133 @@ + + + + + + +Rects (Guile-SDL2) + + + + + + + + + + + + + + + + + + + + +
+

+Next: , Previous: , Up: API Reference   [Contents][Index]

+
+
+ +

3.5 Rects

+ +
+
(use-modules (sdl2 rect))
+
+ +
+
Procedure: make-rect x y width height
+

Return a new rectangle whose upper-left corner is at (x, +y) and is width pixels wide and height pixels high. +

+ +
+
Procedure: rect-x rect
+

Return the X coordinate of rect. +

+ +
+
Procedure: rect-y rect
+

Return the Y coordinate of rect. +

+ +
+
Procedure: rect-width rect
+

Return the width of rect. +

+ +
+
Procedure: rect-height rect
+

Return the height of rect. +

+ + + + + + -- cgit v1.2.3