-
Notifications
You must be signed in to change notification settings - Fork 88
make glgui
Peter Lewis edited this page Feb 11, 2022
·
2 revisions
make-glgui creates GUI object to add widgets
| Parameter | Description |
|---|---|
| offset | Optional: The first value specifies the lower left corner along the x-axis in pixels, the second value specifies the lower left corner along the y-axis in pixels |
Example1: The most common way a gui is made in LambdaNative apps
(set! gui (make-glgui))
Example 2: Make a gui where the reference coordinates start at global x=60 and y=20;
(set! gui (make-glgui 60 20))