summaryrefslogtreecommitdiff
path: root/manuals/chickadee/Index.html
blob: bc184bd6da4850c239e50527c805714f02b136fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Copyright (C) 2017-2021  David Thompson davet@gnu.org

Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
A copy of the license is included in the section entitled "GNU
Free Documentation License".

A copy of the license is also available from the Free Software
Foundation Web site at http://www.gnu.org/licenses/fdl.html.


* Chickadee: (chickadee).     Game programming toolkit for Guile.

The document was typeset with
http://www.texinfo.org/ (GNU Texinfo).
 -->
<!-- Created by GNU Texinfo 6.7, http://www.gnu.org/software/texinfo/ -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Index (The Chickadee Game Toolkit)</title>

<meta name="description" content="Index (The Chickadee Game Toolkit)">
<meta name="keywords" content="Index (The Chickadee Game Toolkit)">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<link href="index.html" rel="start" title="Top">
<link href="#Index" rel="index" title="Index">
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
<link href="index.html" rel="up" title="Top">
<link href="GNU-Free-Documentation-License.html" rel="prev" title="GNU Free Documentation License">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.indentedblock {margin-right: 0em}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
kbd {font-style: oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
span.nolinebreak {white-space: nowrap}
span.roman {font-family: initial; font-weight: normal}
span.sansserif {font-family: sans-serif; font-weight: normal}
ul.no-bullet {list-style: none}
@media (min-width: 1140px) {
    body {
        margin-left: 14rem;
        margin-right: 4rem;
        max-width: 52rem;
    }
}

@media (min-width: 800px) and (max-width: 1140px) {
    body {
        margin-left: 6rem;
        margin-right: 4rem;
        max-width: 52rem;
    }
}

@media (max-width: 800px) {
    body {
        margin: 1rem;
    }
}

-->
</style>
<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css">


</head>

<body lang="en">
<span id="Index"></span><div class="header">
<p>
Previous: <a href="Copying-This-Manual.html" accesskey="p" rel="prev">Copying This Manual</a>, Up: <a href="index.html" accesskey="u" rel="up">Top</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>
<hr>
<span id="Index-1"></span><h2 class="unnumbered">Index</h2>

<table><tr><th valign="top">Jump to: &nbsp; </th><td><a class="summary-letter" href="#Index_fn_symbol-1"><b>%</b></a>
 &nbsp; 
<br>
<a class="summary-letter" href="#Index_fn_letter-A"><b>A</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-B"><b>B</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-C"><b>C</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-D"><b>D</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-E"><b>E</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-F"><b>F</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-G"><b>G</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-H"><b>H</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-I"><b>I</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-J"><b>J</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-K"><b>K</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-L"><b>L</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-M"><b>M</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-N"><b>N</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-O"><b>O</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-P"><b>P</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-Q"><b>Q</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-R"><b>R</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-S"><b>S</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-T"><b>T</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-U"><b>U</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-V"><b>V</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-W"><b>W</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-Y"><b>Y</b></a>
 &nbsp; 
</td></tr></table>
<table class="index-fn" border="0">
<tr><td></td><th align="left">Index Entry</th><td>&nbsp;</td><th align="left"> Section</th></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_symbol-1">%</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Invoking-chickadee-bundle.html#index-_0025default_002dconfig"><code>%default-config</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Invoking-chickadee-bundle.html">Invoking chickadee bundle</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-A">A</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Path-Finding.html#index-a_002a"><code>a*</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Path-Finding.html">Path Finding</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Game-Loop.html#index-abort_002dgame"><code>abort-game</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-Game-Loop.html">The Game Loop</a></td></tr>
<tr><td></td><td valign="top"><a href="Particles.html#index-add_002dparticle_002demitter"><code>add-particle-emitter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Particles.html">Particles</a></td></tr>
<tr><td></td><td valign="top"><a href="Agendas.html#index-after"><code>after</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Agendas.html">Agendas</a></td></tr>
<tr><td></td><td valign="top"><a href="Agendas.html#index-agenda_002dtime"><code>agenda-time</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Agendas.html">Agendas</a></td></tr>
<tr><td></td><td valign="top"><a href="Agendas.html#index-agenda_003f"><code>agenda?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Agendas.html">Agendas</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-animation_002dduration"><code>animation-duration</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-animation_002dframe_002dduration"><code>animation-frame-duration</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-animation_002dframe_002dtile"><code>animation-frame-tile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-animation_002dframe_003f"><code>animation-frame?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-animation_002dframes"><code>animation-frames</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-animation_003f"><code>animation?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-arc"><code>arc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-arc_002dto"><code>arc-to</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Array-Lists.html#index-array_002dlist"><code>array-list</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Array-Lists.html">Array Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Array-Lists.html#index-array_002dlist_002dclear_0021"><code>array-list-clear!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Array-Lists.html">Array Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Array-Lists.html#index-array_002dlist_002ddelete_0021"><code>array-list-delete!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Array-Lists.html">Array Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Array-Lists.html#index-array_002dlist_002dempty_003f"><code>array-list-empty?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Array-Lists.html">Array Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Array-Lists.html#index-array_002dlist_002dfold"><code>array-list-fold</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Array-Lists.html">Array Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Array-Lists.html#index-array_002dlist_002dfor_002deach"><code>array-list-for-each</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Array-Lists.html">Array Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Array-Lists.html#index-array_002dlist_002dpop_0021"><code>array-list-pop!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Array-Lists.html">Array Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Array-Lists.html#index-array_002dlist_002dpush_0021"><code>array-list-push!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Array-Lists.html">Array Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Array-Lists.html#index-array_002dlist_002dref"><code>array-list-ref</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Array-Lists.html">Array Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Array-Lists.html#index-array_002dlist_002dset_0021"><code>array-list-set!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Array-Lists.html">Array Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Array-Lists.html#index-array_002dlist_002dsize"><code>array-list-size</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Array-Lists.html">Array Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Array-Lists.html#index-array_002dlist_003f"><code>array-list?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Array-Lists.html">Array Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Agendas.html#index-at"><code>at</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Agendas.html">Agendas</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-attribute_002dlocation"><code>attribute-location</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-attribute_002dname"><code>attribute-name</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-attribute_002dtype"><code>attribute-type</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-attribute_003f"><code>attribute?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Files.html#index-audio_002dbits_002dper_002dsample"><code>audio-bits-per-sample</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Files.html">Audio Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Files.html#index-audio_002dchannels"><code>audio-channels</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Files.html">Audio Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Files.html#index-audio_002dduration"><code>audio-duration</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Files.html">Audio Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Files.html#index-audio_002dmode"><code>audio-mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Files.html">Audio Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Files.html#index-audio_002dplay"><code>audio-play</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Files.html">Audio Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Files.html#index-audio_002dsample_002drate"><code>audio-sample-rate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Files.html">Audio Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Files.html#index-audio_003f"><code>audio?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Files.html">Audio Files</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-B">B</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-back_002dcull_002dface_002dmode"><code>back-cull-face-mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-below"><code>below</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-beside"><code>beside</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Bezier-Curves.html#index-bezier_002dcurve_002dp0"><code>bezier-curve-p0</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Bezier-Curves.html">Bezier Curves</a></td></tr>
<tr><td></td><td valign="top"><a href="Bezier-Curves.html#index-bezier_002dcurve_002dp1"><code>bezier-curve-p1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Bezier-Curves.html">Bezier Curves</a></td></tr>
<tr><td></td><td valign="top"><a href="Bezier-Curves.html#index-bezier_002dcurve_002dp2"><code>bezier-curve-p2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Bezier-Curves.html">Bezier Curves</a></td></tr>
<tr><td></td><td valign="top"><a href="Bezier-Curves.html#index-bezier_002dcurve_002dp3"><code>bezier-curve-p3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Bezier-Curves.html">Bezier Curves</a></td></tr>
<tr><td></td><td valign="top"><a href="Bezier-Curves.html#index-bezier_002dcurve_002dpoint_002dat"><code>bezier-curve-point-at</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Bezier-Curves.html">Bezier Curves</a></td></tr>
<tr><td></td><td valign="top"><a href="Bezier-Curves.html#index-bezier_002dcurve_002dpoint_002dat_0021"><code>bezier-curve-point-at!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Bezier-Curves.html">Bezier Curves</a></td></tr>
<tr><td></td><td valign="top"><a href="Bezier-Curves.html#index-bezier_002dcurve_003f"><code>bezier-curve?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Bezier-Curves.html">Bezier Curves</a></td></tr>
<tr><td></td><td valign="top"><a href="Bezier-Curves.html#index-bezier_002dpath"><code>bezier-path</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Bezier-Curves.html">Bezier Curves</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-bezier_002dpath-1"><code>bezier-path</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-bezier_002dto"><code>bezier-to</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-black"><code>black</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-blend_003aadd"><code>blend:add</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-blend_003aalpha"><code>blend:alpha</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-blend_003adarken"><code>blend:darken</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-blend_003alighten"><code>blend:lighten</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-blend_003amultiply"><code>blend:multiply</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-blend_003areplace"><code>blend:replace</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-blend_003ascreen"><code>blend:screen</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-blend_003asubtract"><code>blend:subtract</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-blue"><code>blue</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-bool"><code>bool</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-buffer_002ddata"><code>buffer-data</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-buffer_002dlength"><code>buffer-length</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-buffer_002dname"><code>buffer-name</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-buffer_002dstride"><code>buffer-stride</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-buffer_002dtarget"><code>buffer-target</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-buffer_002dusage"><code>buffer-usage</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-buffer_003f"><code>buffer?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-C">C</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Agendas.html#index-call_002dwhen"><code>call-when</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Agendas.html">Agendas</a></td></tr>
<tr><td></td><td valign="top"><a href="Scripts.html#index-cancel_002dscript"><code>cancel-script</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Scripts.html">Scripts</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-canvas_003f"><code>canvas?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Grids.html#index-cell_002dcount"><code>cell-count</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Grids.html">Grids</a></td></tr>
<tr><td></td><td valign="top"><a href="Grids.html#index-cell_003f"><code>cell?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Grids.html">Grids</a></td></tr>
<tr><td></td><td valign="top"><a href="Channels.html#index-channel_002dclear_0021"><code>channel-clear!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Channels.html">Channels</a></td></tr>
<tr><td></td><td valign="top"><a href="Channels.html#index-channel_002dget"><code>channel-get</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Channels.html">Channels</a></td></tr>
<tr><td></td><td valign="top"><a href="Channels.html#index-channel_002dget_0021"><code>channel-get!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Channels.html">Channels</a></td></tr>
<tr><td></td><td valign="top"><a href="Channels.html#index-channel_002dput"><code>channel-put</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Channels.html">Channels</a></td></tr>
<tr><td></td><td valign="top"><a href="Channels.html#index-channel_002dput_0021"><code>channel-put!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Channels.html">Channels</a></td></tr>
<tr><td></td><td valign="top"><a href="Channels.html#index-channel_003f"><code>channel?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Channels.html">Channels</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-circle"><code>circle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Basics.html#index-clamp"><code>clamp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basics.html">Basics</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-close_002dpath"><code>close-path</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-color_002a"><code>color*</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-color_002b"><code>color+</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-color_002d"><code>color-</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-color_002da"><code>color-a</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-color_002db"><code>color-b</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-color_002dg"><code>color-g</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-color_002dinverse"><code>color-inverse</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-color_002dlerp"><code>color-lerp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-color_002dr"><code>color-r</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-color_003f"><code>color?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Input-Devices.html#index-controller_002daxis"><code>controller-axis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Input-Devices.html">Input Devices</a></td></tr>
<tr><td></td><td valign="top"><a href="Input-Devices.html#index-controller_002dbutton_002dpressed_003f"><code>controller-button-pressed?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Input-Devices.html">Input Devices</a></td></tr>
<tr><td></td><td valign="top"><a href="Input-Devices.html#index-controller_002dbutton_002dreleased_003f"><code>controller-button-released?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Input-Devices.html">Input Devices</a></td></tr>
<tr><td></td><td valign="top"><a href="Input-Devices.html#index-controller_002dname"><code>controller-name</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Input-Devices.html">Input Devices</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-corner_002dsplit"><code>corner-split</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Basics.html#index-cotan"><code>cotan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basics.html">Basics</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-cube_002dmap_003f"><code>cube-map?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-cull_002dface_002dmode_002dback_003f"><code>cull-face-mode-back?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-cull_002dface_002dmode_002dfront_003f"><code>cull-face-mode-front?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-cull_002dface_002dmode_003f"><code>cull-face-mode?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Agendas.html#index-current_002dagenda"><code>current-agenda</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Agendas.html">Agendas</a></td></tr>
<tr><td></td><td valign="top"><a href="Agendas.html#index-current_002dagenda-1"><code>current-agenda</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Agendas.html">Agendas</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-current_002dbuffer"><code>current-buffer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-current_002dcull_002dface_002dmode"><code>current-cull-face-mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-current_002ddepth_002dtest"><code>current-depth-test</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Framebuffers.html#index-current_002dframebuffer"><code>current-framebuffer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Framebuffers.html">Framebuffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-current_002dmultisample"><code>current-multisample</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-current_002dpolygon_002dmode"><code>current-polygon-mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Rendering-Engine.html#index-current_002dprojection"><code>current-projection</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rendering-Engine.html">Rendering Engine</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-current_002dstencil_002dtest"><code>current-stencil-test</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-current_002dtexture_002d0"><code>current-texture-0</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-current_002dtexture_002d1"><code>current-texture-1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-current_002dtexture_002d2"><code>current-texture-2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-current_002dtexture_002d3"><code>current-texture-3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-current_002dtexture_002d4"><code>current-texture-4</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-current_002dvertex_002darray"><code>current-vertex-array</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Viewports.html#index-current_002dviewport"><code>current-viewport</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Viewports.html">Viewports</a></td></tr>
<tr><td></td><td valign="top"><a href="Window-Manipulation.html#index-current_002dwindow"><code>current-window</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Window-Manipulation.html">Window Manipulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-cyan"><code>cyan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-D">D</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-default_002dstencil_002dtest"><code>default-stencil-test</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-define_002dshader_002dtype"><code>define-shader-type</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Basics.html#index-degrees_002d_003eradians"><code>degrees-&gt;radians</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basics.html">Basics</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-depth_002dtest_002dfar"><code>depth-test-far</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-depth_002dtest_002dfunction"><code>depth-test-function</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-depth_002dtest_002dnear"><code>depth-test-near</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-depth_002dtest_002dwrite_003f"><code>depth-test-write?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-depth_002dtest_003f"><code>depth-test?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Queues.html#index-dequeue_0021"><code>dequeue!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Queues.html">Queues</a></td></tr>
<tr><td></td><td valign="top"><a href="Lights.html#index-directional_002dlight_003f"><code>directional-light?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Lights.html">Lights</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Environment.html#index-distance_002dmodel"><code>distance-model</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-Environment.html">The Environment</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Environment.html#index-doppler_002dfactor"><code>doppler-factor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-Environment.html">The Environment</a></td></tr>
<tr><td></td><td valign="top"><a href="Sprites.html#index-draw_002d9_002dpatch"><code>draw-9-patch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sprites.html">Sprites</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-draw_002dcanvas"><code>draw-canvas</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Models.html#index-draw_002dmodel"><code>draw-model</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Models.html">Models</a></td></tr>
<tr><td></td><td valign="top"><a href="Particles.html#index-draw_002dparticles"><code>draw-particles</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Particles.html">Particles</a></td></tr>
<tr><td></td><td valign="top"><a href="Particles.html#index-draw_002dparticles_002a"><code>draw-particles*</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Particles.html">Particles</a></td></tr>
<tr><td></td><td valign="top"><a href="Skyboxes.html#index-draw_002dskybox"><code>draw-skybox</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Skyboxes.html">Skyboxes</a></td></tr>
<tr><td></td><td valign="top"><a href="Sprites.html#index-draw_002dsprite"><code>draw-sprite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sprites.html">Sprites</a></td></tr>
<tr><td></td><td valign="top"><a href="Sprites.html#index-draw_002dsprite_002dbatch"><code>draw-sprite-batch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sprites.html">Sprites</a></td></tr>
<tr><td></td><td valign="top"><a href="Fonts.html#index-draw_002dtext"><code>draw-text</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Fonts.html">Fonts</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-draw_002dtile_002dmap"><code>draw-tile-map</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-E">E</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Easings.html#index-ease_002din_002dcubic"><code>ease-in-cubic</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Easings.html">Easings</a></td></tr>
<tr><td></td><td valign="top"><a href="Easings.html#index-ease_002din_002dout_002dcubic"><code>ease-in-out-cubic</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Easings.html">Easings</a></td></tr>
<tr><td></td><td valign="top"><a href="Easings.html#index-ease_002din_002dout_002dquad"><code>ease-in-out-quad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Easings.html">Easings</a></td></tr>
<tr><td></td><td valign="top"><a href="Easings.html#index-ease_002din_002dout_002dquart"><code>ease-in-out-quart</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Easings.html">Easings</a></td></tr>
<tr><td></td><td valign="top"><a href="Easings.html#index-ease_002din_002dout_002dquint"><code>ease-in-out-quint</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Easings.html">Easings</a></td></tr>
<tr><td></td><td valign="top"><a href="Easings.html#index-ease_002din_002dout_002dsine"><code>ease-in-out-sine</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Easings.html">Easings</a></td></tr>
<tr><td></td><td valign="top"><a href="Easings.html#index-ease_002din_002dquad"><code>ease-in-quad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Easings.html">Easings</a></td></tr>
<tr><td></td><td valign="top"><a href="Easings.html#index-ease_002din_002dquart"><code>ease-in-quart</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Easings.html">Easings</a></td></tr>
<tr><td></td><td valign="top"><a href="Easings.html#index-ease_002din_002dquint"><code>ease-in-quint</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Easings.html">Easings</a></td></tr>
<tr><td></td><td valign="top"><a href="Easings.html#index-ease_002din_002dsine"><code>ease-in-sine</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Easings.html">Easings</a></td></tr>
<tr><td></td><td valign="top"><a href="Easings.html#index-ease_002dout_002dcubic"><code>ease-out-cubic</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Easings.html">Easings</a></td></tr>
<tr><td></td><td valign="top"><a href="Easings.html#index-ease_002dout_002dquad"><code>ease-out-quad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Easings.html">Easings</a></td></tr>
<tr><td></td><td valign="top"><a href="Easings.html#index-ease_002dout_002dquart"><code>ease-out-quart</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Easings.html">Easings</a></td></tr>
<tr><td></td><td valign="top"><a href="Easings.html#index-ease_002dout_002dquint"><code>ease-out-quint</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Easings.html">Easings</a></td></tr>
<tr><td></td><td valign="top"><a href="Easings.html#index-ease_002dout_002dsine"><code>ease-out-sine</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Easings.html">Easings</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Game-Loop.html#index-elapsed_002dtime"><code>elapsed-time</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-Game-Loop.html">The Game Loop</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-ellipse"><code>ellipse</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Queues.html#index-enqueue_0021"><code>enqueue!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Queues.html">Queues</a></td></tr>
<tr><td></td><td valign="top"><a href="Agendas.html#index-every"><code>every</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Agendas.html">Agendas</a></td></tr>
<tr><td></td><td valign="top"><a href="Agendas.html#index-every-1"><code>every</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Agendas.html">Agendas</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-F">F</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-fill"><code>fill</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-fill_002dand_002dstroke"><code>fill-and-stroke</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-fill_002dpolygon_002dmode"><code>fill-polygon-mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-float"><code>float</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-float_002dvec2"><code>float-vec2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-float_002dvec3"><code>float-vec3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-float_002dvec4"><code>float-vec4</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Fonts.html#index-font_002dbold_003f"><code>font-bold?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Fonts.html">Fonts</a></td></tr>
<tr><td></td><td valign="top"><a href="Fonts.html#index-font_002dface"><code>font-face</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Fonts.html">Fonts</a></td></tr>
<tr><td></td><td valign="top"><a href="Fonts.html#index-font_002ditalic_003f"><code>font-italic?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Fonts.html">Fonts</a></td></tr>
<tr><td></td><td valign="top"><a href="Fonts.html#index-font_002dline_002dheight"><code>font-line-height</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Fonts.html">Fonts</a></td></tr>
<tr><td></td><td valign="top"><a href="Fonts.html#index-font_002dline_002dheight-1"><code>font-line-height</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Fonts.html">Fonts</a></td></tr>
<tr><td></td><td valign="top"><a href="Fonts.html#index-font_003f"><code>font?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Fonts.html">Fonts</a></td></tr>
<tr><td></td><td valign="top"><a href="Grids.html#index-for_002deach_002dcell"><code>for-each-cell</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Grids.html">Grids</a></td></tr>
<tr><td></td><td valign="top"><a href="Grids.html#index-for_002deach_002ditem"><code>for-each-item</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Grids.html">Grids</a></td></tr>
<tr><td></td><td valign="top"><a href="Scripts.html#index-forever"><code>forever</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Scripts.html">Scripts</a></td></tr>
<tr><td></td><td valign="top"><a href="Framebuffers.html#index-framebuffer_002dtexture"><code>framebuffer-texture</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Framebuffers.html">Framebuffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Framebuffers.html#index-framebuffer_002dviewport"><code>framebuffer-viewport</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Framebuffers.html">Framebuffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Framebuffers.html#index-framebuffer_003f"><code>framebuffer?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Framebuffers.html">Framebuffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-front_002dand_002dback_002dcull_002dface_002dmode"><code>front-and-back-cull-face-mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-front_002dcull_002dface_002dmode"><code>front-cull-face-mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-G">G</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-g_003abuffer"><code>g:buffer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-g_003acull_002dface_002dmode"><code>g:cull-face-mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-g_003adepth_002dtest"><code>g:depth-test</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Framebuffers.html#index-g_003aframebuffer"><code>g:framebuffer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Framebuffers.html">Framebuffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-g_003amultisample_003f"><code>g:multisample?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-g_003apolygon_002dmode"><code>g:polygon-mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-g_003astencil_002dtest"><code>g:stencil-test</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-g_003atexture_002d0"><code>g:texture-0</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-g_003atexture_002d1"><code>g:texture-1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-g_003atexture_002d2"><code>g:texture-2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-g_003atexture_002d3"><code>g:texture-3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-g_003atexture_002d4"><code>g:texture-4</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-g_003avertex_002darray"><code>g:vertex-array</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Viewports.html#index-g_003aviewport"><code>g:viewport</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Viewports.html">Viewports</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-gradient_003f"><code>gradient?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-green"><code>green</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Grids.html#index-grid_002dadd"><code>grid-add</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Grids.html">Grids</a></td></tr>
<tr><td></td><td valign="top"><a href="Grids.html#index-grid_002dcell_002dcount"><code>grid-cell-count</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Grids.html">Grids</a></td></tr>
<tr><td></td><td valign="top"><a href="Grids.html#index-grid_002dcell_002dsize"><code>grid-cell-size</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Grids.html">Grids</a></td></tr>
<tr><td></td><td valign="top"><a href="Grids.html#index-grid_002dclear"><code>grid-clear</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Grids.html">Grids</a></td></tr>
<tr><td></td><td valign="top"><a href="Grids.html#index-grid_002ditem_002dcount"><code>grid-item-count</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Grids.html">Grids</a></td></tr>
<tr><td></td><td valign="top"><a href="Grids.html#index-grid_002dmove"><code>grid-move</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Grids.html">Grids</a></td></tr>
<tr><td></td><td valign="top"><a href="Grids.html#index-grid_002dremove"><code>grid-remove</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Grids.html">Grids</a></td></tr>
<tr><td></td><td valign="top"><a href="Grids.html#index-grid_003f"><code>grid?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Grids.html">Grids</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-H">H</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Heaps.html#index-heap_002dclear_0021"><code>heap-clear!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Heaps.html">Heaps</a></td></tr>
<tr><td></td><td valign="top"><a href="Heaps.html#index-heap_002dempty_003f"><code>heap-empty?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Heaps.html">Heaps</a></td></tr>
<tr><td></td><td valign="top"><a href="Heaps.html#index-heap_002dinsert_0021"><code>heap-insert!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Heaps.html">Heaps</a></td></tr>
<tr><td></td><td valign="top"><a href="Heaps.html#index-heap_002dmin"><code>heap-min</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Heaps.html">Heaps</a></td></tr>
<tr><td></td><td valign="top"><a href="Heaps.html#index-heap_002dremove_0021"><code>heap-remove!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Heaps.html">Heaps</a></td></tr>
<tr><td></td><td valign="top"><a href="Heaps.html#index-heap_002dsize"><code>heap-size</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Heaps.html">Heaps</a></td></tr>
<tr><td></td><td valign="top"><a href="Heaps.html#index-heap_003f"><code>heap?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Heaps.html">Heaps</a></td></tr>
<tr><td></td><td valign="top"><a href="Window-Manipulation.html#index-hide_002dwindow_0021"><code>hide-window!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Window-Manipulation.html">Window Manipulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-horizontal_002dflip"><code>horizontal-flip</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-I">I</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-index_002dbuffer_003f"><code>index-buffer?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-int"><code>int</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-J">J</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Scripts.html#index-join"><code>join</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Scripts.html">Scripts</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-K">K</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Input-Devices.html#index-key_002dpressed_003f"><code>key-pressed?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Input-Devices.html">Input Devices</a></td></tr>
<tr><td></td><td valign="top"><a href="Input-Devices.html#index-key_002dreleased_003f"><code>key-released?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Input-Devices.html">Input Devices</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-L">L</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Basics.html#index-lerp"><code>lerp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basics.html">Basics</a></td></tr>
<tr><td></td><td valign="top"><a href="Lights.html#index-light_002dcolor"><code>light-color</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Lights.html">Lights</a></td></tr>
<tr><td></td><td valign="top"><a href="Lights.html#index-light_002dcut_002doff"><code>light-cut-off</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Lights.html">Lights</a></td></tr>
<tr><td></td><td valign="top"><a href="Lights.html#index-light_002ddirection"><code>light-direction</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Lights.html">Lights</a></td></tr>
<tr><td></td><td valign="top"><a href="Lights.html#index-light_002dintensity"><code>light-intensity</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Lights.html">Lights</a></td></tr>
<tr><td></td><td valign="top"><a href="Lights.html#index-light_002dposition"><code>light-position</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Lights.html">Lights</a></td></tr>
<tr><td></td><td valign="top"><a href="Lights.html#index-light_002dtype"><code>light-type</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Lights.html">Lights</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-line"><code>line</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-line_002dpolygon_002dmode"><code>line-polygon-mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-line_002dto"><code>line-to</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Easings.html#index-linear"><code>linear</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Easings.html">Easings</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-linear_002dgradient"><code>linear-gradient</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Listener.html#index-listener_002dorientation"><code>listener-orientation</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-Listener.html">The Listener</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Listener.html#index-listener_002dposition"><code>listener-position</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-Listener.html">The Listener</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Listener.html#index-listener_002dvelocity"><code>listener-velocity</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-Listener.html">The Listener</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Listener.html#index-listener_002dvolume"><code>listener-volume</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-Listener.html">The Listener</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Files.html#index-load_002daudio"><code>load-audio</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Files.html">Audio Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Fonts.html#index-load_002dbitmap_002dfont"><code>load-bitmap-font</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Fonts.html">Fonts</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-load_002dcube_002dmap"><code>load-cube-map</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Fonts.html#index-load_002dfont"><code>load-font</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Fonts.html">Fonts</a></td></tr>
<tr><td></td><td valign="top"><a href="Models.html#index-load_002dgltf"><code>load-gltf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Models.html">Models</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-load_002dimage"><code>load-image</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Models.html#index-load_002dobj"><code>load-obj</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Models.html">Models</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-load_002dshader"><code>load-shader</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-load_002dtile_002dmap"><code>load-tile-map</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-load_002dtileset"><code>load-tileset</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-local_002dfield"><code>local-field</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-M">M</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-magenta"><code>magenta</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Agendas.html#index-make_002dagenda"><code>make-agenda</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Agendas.html">Agendas</a></td></tr>
<tr><td></td><td valign="top"><a href="Array-Lists.html#index-make_002darray_002dlist"><code>make-array-list</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Array-Lists.html">Array Lists</a></td></tr>
<tr><td></td><td valign="top"><a href="Bezier-Curves.html#index-make_002dbezier_002dcurve"><code>make-bezier-curve</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Bezier-Curves.html">Bezier Curves</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-make_002dblend_002dmode"><code>make-blend-mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-make_002dbuffer"><code>make-buffer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-make_002dcanvas"><code>make-canvas</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Channels.html#index-make_002dchannel"><code>make-channel</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Channels.html">Channels</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-make_002dcolor"><code>make-color</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-make_002dcube"><code>make-cube</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-make_002ddepth_002dtest"><code>make-depth-test</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Lights.html#index-make_002ddirectional_002dlight"><code>make-directional-light</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Lights.html">Lights</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-make_002dempty_002dcanvas"><code>make-empty-canvas</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Framebuffers.html#index-make_002dframebuffer"><code>make-framebuffer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Framebuffers.html">Framebuffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Grids.html#index-make_002dgrid"><code>make-grid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Grids.html">Grids</a></td></tr>
<tr><td></td><td valign="top"><a href="Heaps.html#index-make_002dheap"><code>make-heap</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Heaps.html">Heaps</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-make_002didentity_002dmatrix3"><code>make-identity-matrix3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-make_002didentity_002dmatrix4"><code>make-identity-matrix4</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Quaternions.html#index-make_002didentity_002dquaternion"><code>make-identity-quaternion</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quaternions.html">Quaternions</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-make_002dmatrix3"><code>make-matrix3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-make_002dmatrix4"><code>make-matrix4</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-make_002dmesh"><code>make-mesh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-make_002dnull_002dmatrix3"><code>make-null-matrix3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-make_002dnull_002dmatrix4"><code>make-null-matrix4</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Particles.html#index-make_002dparticle_002demitter"><code>make-particle-emitter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Particles.html">Particles</a></td></tr>
<tr><td></td><td valign="top"><a href="Particles.html#index-make_002dparticles"><code>make-particles</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Particles.html">Particles</a></td></tr>
<tr><td></td><td valign="top"><a href="Path-Finding.html#index-make_002dpath_002dfinder"><code>make-path-finder</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Path-Finding.html">Path Finding</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-make_002dpbr_002dmaterial"><code>make-pbr-material</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-make_002dpbr_002dproperties"><code>make-pbr-properties</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-make_002dphong_002dmaterial"><code>make-phong-material</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-make_002dphong_002dproperties"><code>make-phong-properties</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-make_002dplane"><code>make-plane</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Lights.html#index-make_002dpoint_002dlight"><code>make-point-light</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Lights.html">Lights</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-make_002dpolygon_002dmode"><code>make-polygon-mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-make_002dprimitive"><code>make-primitive</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadtrees.html#index-make_002dquadtree"><code>make-quadtree</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadtrees.html">Quadtrees</a></td></tr>
<tr><td></td><td valign="top"><a href="Queues.html#index-make_002dqueue"><code>make-queue</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Queues.html">Queues</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-make_002drect"><code>make-rect</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-make_002dshader"><code>make-shader</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Skyboxes.html#index-make_002dskybox"><code>make-skybox</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Skyboxes.html">Skyboxes</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-make_002dsource"><code>make-source</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-make_002dsphere"><code>make-sphere</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Lights.html#index-make_002dspot_002dlight"><code>make-spot-light</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Lights.html">Lights</a></td></tr>
<tr><td></td><td valign="top"><a href="Sprites.html#index-make_002dsprite_002dbatch"><code>make-sprite-batch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sprites.html">Sprites</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-make_002dstencil_002dtest"><code>make-stencil-test</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-make_002dtesselated_002dplane"><code>make-tesselated-plane</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-make_002dvertex_002darray"><code>make-vertex-array</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-make_002dvertex_002dattribute"><code>make-vertex-attribute</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Viewports.html#index-make_002dviewport"><code>make-viewport</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Viewports.html">Viewports</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-map_002dobject_002did"><code>map-object-id</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-map_002dobject_002dname"><code>map-object-name</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-map_002dobject_002dproperties"><code>map-object-properties</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-map_002dobject_002dshape"><code>map-object-shape</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-map_002dobject_002dtype"><code>map-object-type</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-map_002dobject_003f"><code>map-object?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-mat3"><code>mat3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-mat4"><code>mat4</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-material_002dblend_002dmode"><code>material-blend-mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-material_002dcull_002dface_002dmode"><code>material-cull-face-mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-material_002ddepth_002dtest"><code>material-depth-test</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-material_002dmultisample_003f"><code>material-multisample?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-material_002dname"><code>material-name</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-material_002dpolygon_002dmode"><code>material-polygon-mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-material_002dproperties"><code>material-properties</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-material_002dshader"><code>material-shader</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-material_002dstencil_002dtest"><code>material-stencil-test</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-material_002dtexture_002d0"><code>material-texture-0</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-material_002dtexture_002d1"><code>material-texture-1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-material_002dtexture_002d2"><code>material-texture-2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-material_002dtexture_002d3"><code>material-texture-3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-material_002dtexture_002d4"><code>material-texture-4</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-material_003f"><code>material?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix3_002a"><code>matrix3*</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix3_002dcopy"><code>matrix3-copy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix3_002dcopy_0021"><code>matrix3-copy!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix3_002didentity_0021"><code>matrix3-identity!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix3_002dinverse"><code>matrix3-inverse</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix3_002dinverse_0021"><code>matrix3-inverse!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix3_002dmult_0021"><code>matrix3-mult!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix3_002drotate"><code>matrix3-rotate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix3_002drotate_0021"><code>matrix3-rotate!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix3_002dscale"><code>matrix3-scale</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix3_002dscale_0021"><code>matrix3-scale!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix3_002dtransform"><code>matrix3-transform</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix3_002dtransform_0021"><code>matrix3-transform!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix3_002dtranslate"><code>matrix3-translate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix3_002dtranslate_0021"><code>matrix3-translate!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix3_003d"><code>matrix3=</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix3_003f"><code>matrix3?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix4_002a"><code>matrix4*</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix4_002d2d_002dtransform_0021"><code>matrix4-2d-transform!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix4_002dcopy"><code>matrix4-copy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix4_002dcopy_0021"><code>matrix4-copy!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix4_002didentity_0021"><code>matrix4-identity!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix4_002dinverse"><code>matrix4-inverse</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix4_002dinverse_0021"><code>matrix4-inverse!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix4_002dmult_0021"><code>matrix4-mult!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix4_002drotate"><code>matrix4-rotate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix4_002drotate_0021"><code>matrix4-rotate!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix4_002drotate_002dz"><code>matrix4-rotate-z</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix4_002drotate_002dz_0021"><code>matrix4-rotate-z!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix4_002dscale"><code>matrix4-scale</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix4_002dscale_0021"><code>matrix4-scale!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix4_002dtransform_0021"><code>matrix4-transform!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix4_002dtranslate"><code>matrix4-translate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix4_002dtranslate_0021"><code>matrix4-translate!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix4_003d"><code>matrix4=</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-matrix4_003f"><code>matrix4?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Window-Manipulation.html#index-maximize_002dwindow_0021"><code>maximize-window!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Window-Manipulation.html">Window Manipulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-mesh_002dname"><code>mesh-name</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-mesh_002dprimitives"><code>mesh-primitives</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-mesh_003f"><code>mesh?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Window-Manipulation.html#index-minimize_002dwindow_0021"><code>minimize-window!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Window-Manipulation.html">Window Manipulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Models.html#index-model_003f"><code>model?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Models.html">Models</a></td></tr>
<tr><td></td><td valign="top"><a href="Input-Devices.html#index-mouse_002dbutton_002dpressed_003f"><code>mouse-button-pressed?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Input-Devices.html">Input Devices</a></td></tr>
<tr><td></td><td valign="top"><a href="Input-Devices.html#index-mouse_002dbutton_002dreleased_003f"><code>mouse-button-released?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Input-Devices.html">Input Devices</a></td></tr>
<tr><td></td><td valign="top"><a href="Input-Devices.html#index-mouse_002dx"><code>mouse-x</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Input-Devices.html">Input Devices</a></td></tr>
<tr><td></td><td valign="top"><a href="Input-Devices.html#index-mouse_002dy"><code>mouse-y</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Input-Devices.html">Input Devices</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-move_002dto"><code>move-to</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-N">N</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-no_002dcull_002dface_002dmode"><code>no-cull-face-mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-null_002dbuffer"><code>null-buffer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Framebuffers.html#index-null_002dframebuffer"><code>null-framebuffer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Framebuffers.html">Framebuffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-null_002dshader"><code>null-shader</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-null_002dvertex_002darray"><code>null-vertex-array</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-O">O</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-object_002dlayer_002dname"><code>object-layer-name</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-object_002dlayer_002dobjects"><code>object-layer-objects</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-object_002dlayer_002dproperties"><code>object-layer-properties</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-object_002dlayer_003f"><code>object-layer?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-orthographic_002dprojection"><code>orthographic-projection</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-P">P</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-pad"><code>pad</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Particles.html#index-particle_002demitter_002ddone_003f"><code>particle-emitter-done?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Particles.html">Particles</a></td></tr>
<tr><td></td><td valign="top"><a href="Particles.html#index-particle_002demitter_002dlife"><code>particle-emitter-life</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Particles.html">Particles</a></td></tr>
<tr><td></td><td valign="top"><a href="Particles.html#index-particle_002demitter_002drate"><code>particle-emitter-rate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Particles.html">Particles</a></td></tr>
<tr><td></td><td valign="top"><a href="Particles.html#index-particle_002demitter_002dspawn_002darea"><code>particle-emitter-spawn-area</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Particles.html">Particles</a></td></tr>
<tr><td></td><td valign="top"><a href="Particles.html#index-particle_002demitter_003f"><code>particle-emitter?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Particles.html">Particles</a></td></tr>
<tr><td></td><td valign="top"><a href="Particles.html#index-particles_003f"><code>particles?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Particles.html">Particles</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-path"><code>path</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Path-Finding.html#index-path_002dfinder_003f"><code>path-finder?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Path-Finding.html">Path Finding</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-pbr_002dproperties_002dalpha_002dcutoff"><code>pbr-properties-alpha-cutoff</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-pbr_002dproperties_002dalpha_002dmode"><code>pbr-properties-alpha-mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-pbr_002dproperties_002dbase_002dcolor_002dfactor"><code>pbr-properties-base-color-factor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-pbr_002dproperties_002dbase_002dcolor_002dtexcoord"><code>pbr-properties-base-color-texcoord</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-pbr_002dproperties_002demissive_002dfactor"><code>pbr-properties-emissive-factor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-pbr_002dproperties_002demissive_002dtexcoord"><code>pbr-properties-emissive-texcoord</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-pbr_002dproperties_002dmetallic_002dfactor"><code>pbr-properties-metallic-factor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-pbr_002dproperties_002dmetallic_002droughness_002dtexcoord"><code>pbr-properties-metallic-roughness-texcoord</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-pbr_002dproperties_002dnormal_002dtexcoord"><code>pbr-properties-normal-texcoord</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-pbr_002dproperties_002docclusion_002dtexcoord"><code>pbr-properties-occlusion-texcoord</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-pbr_002dproperties_002droughness"><code>pbr-properties-roughness</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-pbr_002dproperties_003f"><code>pbr-properties?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Matrices.html#index-perspective_002dprojection"><code>perspective-projection</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Matrices.html">Matrices</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-phong_002dproperties_002dambient"><code>phong-properties-ambient</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-phong_002dproperties_002ddiffuse"><code>phong-properties-diffuse</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-phong_002dproperties_002dshininess"><code>phong-properties-shininess</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-phong_002dproperties_002dspecular"><code>phong-properties-specular</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-phong_002dproperties_003f"><code>phong-properties?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Basics.html#index-pi"><code>pi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basics.html">Basics</a></td></tr>
<tr><td></td><td valign="top"><a href="Basics.html#index-pi_002f2"><code>pi/2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basics.html">Basics</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-point_002d_003etile"><code>point-&gt;tile</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Lights.html#index-point_002dlight_003f"><code>point-light?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Lights.html">Lights</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-point_002dpolygon_002dmode"><code>point-polygon-mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-polygon_002dmode_003f"><code>polygon-mode?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-polygon_002dpoints"><code>polygon-points</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-polygon_003f"><code>polygon?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-polyline"><code>polyline</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-primitive_002dmaterial"><code>primitive-material</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-primitive_002dname"><code>primitive-name</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-primitive_002dvertex_002darray"><code>primitive-vertex-array</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td></td><td valign="top"><a href="Meshes.html#index-primitive_003f"><code>primitive?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Meshes.html">Meshes</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-Q">Q</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Quadtrees.html#index-quadtree_002dbounds"><code>quadtree-bounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadtrees.html">Quadtrees</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadtrees.html#index-quadtree_002dclear_0021"><code>quadtree-clear!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadtrees.html">Quadtrees</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadtrees.html#index-quadtree_002ddelete_0021"><code>quadtree-delete!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadtrees.html">Quadtrees</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadtrees.html#index-quadtree_002ddepth"><code>quadtree-depth</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadtrees.html">Quadtrees</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadtrees.html#index-quadtree_002dfind"><code>quadtree-find</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadtrees.html">Quadtrees</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadtrees.html#index-quadtree_002dfold"><code>quadtree-fold</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadtrees.html">Quadtrees</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadtrees.html#index-quadtree_002dfor_002deach"><code>quadtree-for-each</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadtrees.html">Quadtrees</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadtrees.html#index-quadtree_002dinsert_0021"><code>quadtree-insert!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadtrees.html">Quadtrees</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadtrees.html#index-quadtree_002dleaf_003f"><code>quadtree-leaf?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadtrees.html">Quadtrees</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadtrees.html#index-quadtree_002dmax_002ddepth"><code>quadtree-max-depth</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadtrees.html">Quadtrees</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadtrees.html#index-quadtree_002dmax_002dsize"><code>quadtree-max-size</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadtrees.html">Quadtrees</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadtrees.html#index-quadtree_002dq1"><code>quadtree-q1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadtrees.html">Quadtrees</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadtrees.html#index-quadtree_002dq2"><code>quadtree-q2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadtrees.html">Quadtrees</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadtrees.html#index-quadtree_002dq3"><code>quadtree-q3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadtrees.html">Quadtrees</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadtrees.html#index-quadtree_002dq4"><code>quadtree-q4</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadtrees.html">Quadtrees</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadtrees.html#index-quadtree_002dsize"><code>quadtree-size</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadtrees.html">Quadtrees</a></td></tr>
<tr><td></td><td valign="top"><a href="Quadtrees.html#index-quadtree_003f"><code>quadtree?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quadtrees.html">Quadtrees</a></td></tr>
<tr><td></td><td valign="top"><a href="Quaternions.html#index-quaternion"><code>quaternion</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quaternions.html">Quaternions</a></td></tr>
<tr><td></td><td valign="top"><a href="Quaternions.html#index-quaternion_002dw"><code>quaternion-w</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quaternions.html">Quaternions</a></td></tr>
<tr><td></td><td valign="top"><a href="Quaternions.html#index-quaternion_002dx"><code>quaternion-x</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quaternions.html">Quaternions</a></td></tr>
<tr><td></td><td valign="top"><a href="Quaternions.html#index-quaternion_002dy"><code>quaternion-y</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quaternions.html">Quaternions</a></td></tr>
<tr><td></td><td valign="top"><a href="Quaternions.html#index-quaternion_002dz"><code>quaternion-z</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quaternions.html">Quaternions</a></td></tr>
<tr><td></td><td valign="top"><a href="Quaternions.html#index-quaternion_003f"><code>quaternion?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Quaternions.html">Quaternions</a></td></tr>
<tr><td></td><td valign="top"><a href="Queues.html#index-queue_002dclear_0021"><code>queue-clear!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Queues.html">Queues</a></td></tr>
<tr><td></td><td valign="top"><a href="Queues.html#index-queue_002dempty_003f"><code>queue-empty?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Queues.html">Queues</a></td></tr>
<tr><td></td><td valign="top"><a href="Queues.html#index-queue_002dlength"><code>queue-length</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Queues.html">Queues</a></td></tr>
<tr><td></td><td valign="top"><a href="Queues.html#index-queue_003f"><code>queue?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Queues.html">Queues</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-R">R</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-radial_002dgradient"><code>radial-gradient</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Basics.html#index-radians_002d_003edegrees"><code>radians-&gt;degrees</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basics.html">Basics</a></td></tr>
<tr><td></td><td valign="top"><a href="Window-Manipulation.html#index-raise_002dwindow_0021"><code>raise-window!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Window-Manipulation.html">Window Manipulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect"><code>rect</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002darea"><code>rect-area</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dbottom"><code>rect-bottom</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dcenter_002dx"><code>rect-center-x</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dcenter_002dy"><code>rect-center-y</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dclamp"><code>rect-clamp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dclamp_0021"><code>rect-clamp!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dclamp_002dx"><code>rect-clamp-x</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dclamp_002dy"><code>rect-clamp-y</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dclip"><code>rect-clip</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dclip_0021"><code>rect-clip!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dcontains_002dvec2_003f"><code>rect-contains-vec2?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dcontains_003f"><code>rect-contains?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dheight"><code>rect-height</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dinflate"><code>rect-inflate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dinflate_0021"><code>rect-inflate!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dintersects_003f"><code>rect-intersects?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dleft"><code>rect-left</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dmove"><code>rect-move</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dmove_0021"><code>rect-move!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dmove_002dby"><code>rect-move-by</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dmove_002dby_0021"><code>rect-move-by!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dmove_002dby_002dvec2"><code>rect-move-by-vec2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dmove_002dby_002dvec2_0021"><code>rect-move-by-vec2!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dmove_002dvec2"><code>rect-move-vec2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dmove_002dvec2_0021"><code>rect-move-vec2!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dright"><code>rect-right</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dtop"><code>rect-top</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dunion"><code>rect-union</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dunion_0021"><code>rect-union!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dwidth"><code>rect-width</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dwithin_003f"><code>rect-within?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dx"><code>rect-x</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_002dy"><code>rect-y</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-rect_003f"><code>rect?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-rectangle"><code>rectangle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-red"><code>red</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-regular_002dpolygon"><code>regular-polygon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Particles.html#index-remove_002dparticle_002demitter"><code>remove-particle-emitter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Particles.html">Particles</a></td></tr>
<tr><td></td><td valign="top"><a href="Window-Manipulation.html#index-restore_002dwindow_0021"><code>restore-window!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Window-Manipulation.html">Window Manipulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-rgb"><code>rgb</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-rgba"><code>rgba</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-right_002dsplit"><code>right-split</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-rotate"><code>rotate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-rounded_002drectangle"><code>rounded-rectangle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Game-Loop.html#index-run_002dgame"><code>run-game</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-Game-Loop.html">The Game Loop</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Game-Loop.html#index-run_002dgame_002a"><code>run-game*</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-Game-Loop.html">The Game Loop</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-S">S</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-sampler_002d2d"><code>sampler-2d</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-sampler_002dcube"><code>sampler-cube</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-scale"><code>scale</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Agendas.html#index-schedule_002dafter"><code>schedule-after</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Agendas.html">Agendas</a></td></tr>
<tr><td></td><td valign="top"><a href="Agendas.html#index-schedule_002dat"><code>schedule-at</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Agendas.html">Agendas</a></td></tr>
<tr><td></td><td valign="top"><a href="Agendas.html#index-schedule_002devery"><code>schedule-every</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Agendas.html">Agendas</a></td></tr>
<tr><td></td><td valign="top"><a href="Scripts.html#index-script"><code>script</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Scripts.html">Scripts</a></td></tr>
<tr><td></td><td valign="top"><a href="Scripts.html#index-script_002dcancelled_003f"><code>script-cancelled?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Scripts.html">Scripts</a></td></tr>
<tr><td></td><td valign="top"><a href="Scripts.html#index-script_002dcomplete_003f"><code>script-complete?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Scripts.html">Scripts</a></td></tr>
<tr><td></td><td valign="top"><a href="Scripts.html#index-script_002drunning_003f"><code>script-running?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Scripts.html">Scripts</a></td></tr>
<tr><td></td><td valign="top"><a href="Scripts.html#index-script_003f"><code>script?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Scripts.html">Scripts</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-set_002dcanvas_002dmatrix_0021"><code>set-canvas-matrix!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-set_002dcanvas_002dpainter_0021"><code>set-canvas-painter!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Environment.html#index-set_002ddistance_002dmodel_0021"><code>set-distance-model!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-Environment.html">The Environment</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Environment.html#index-set_002ddoppler_002dfactor_0021"><code>set-doppler-factor!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-Environment.html">The Environment</a></td></tr>
<tr><td></td><td valign="top"><a href="Lights.html#index-set_002dlight_002dcolor_0021"><code>set-light-color!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Lights.html">Lights</a></td></tr>
<tr><td></td><td valign="top"><a href="Lights.html#index-set_002dlight_002dcut_002doff_0021"><code>set-light-cut-off!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Lights.html">Lights</a></td></tr>
<tr><td></td><td valign="top"><a href="Lights.html#index-set_002dlight_002ddirection_0021"><code>set-light-direction!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Lights.html">Lights</a></td></tr>
<tr><td></td><td valign="top"><a href="Lights.html#index-set_002dlight_002dposition_0021"><code>set-light-position!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Lights.html">Lights</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Listener.html#index-set_002dlistener_002dorientation_0021"><code>set-listener-orientation!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-Listener.html">The Listener</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Listener.html#index-set_002dlistener_002dposition_0021"><code>set-listener-position!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-Listener.html">The Listener</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Listener.html#index-set_002dlistener_002dvelocity_0021"><code>set-listener-velocity!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-Listener.html">The Listener</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Listener.html#index-set_002dlistener_002dvolume_0021"><code>set-listener-volume!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-Listener.html">The Listener</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-set_002drect_002dheight_0021"><code>set-rect-height!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-set_002drect_002dwidth_0021"><code>set-rect-width!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-set_002drect_002dx_0021"><code>set-rect-x!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-set_002drect_002dy_0021"><code>set-rect-y!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-set_002dsource_002daudio_0021"><code>set-source-audio!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-set_002dsource_002dcone_002dinner_002dangle_0021"><code>set-source-cone-inner-angle!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-set_002dsource_002dcone_002douter_002dangle_0021"><code>set-source-cone-outer-angle!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-set_002dsource_002dcone_002douter_002dvolume_0021"><code>set-source-cone-outer-volume!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-set_002dsource_002ddirection_0021"><code>set-source-direction!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-set_002dsource_002dloop_0021"><code>set-source-loop!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-set_002dsource_002dmax_002ddistance_0021"><code>set-source-max-distance!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-set_002dsource_002dmax_002dvolume_0021"><code>set-source-max-volume!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-set_002dsource_002dmin_002dvolume_0021"><code>set-source-min-volume!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-set_002dsource_002dpitch_0021"><code>set-source-pitch!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-set_002dsource_002dposition_0021"><code>set-source-position!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-set_002dsource_002dreference_002ddistance_0021"><code>set-source-reference-distance!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-set_002dsource_002drelative_0021"><code>set-source-relative!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-set_002dsource_002drolloff_002dfactor_0021"><code>set-source-rolloff-factor!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-set_002dsource_002dvelocity_0021"><code>set-source-velocity!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-set_002dsource_002dvolume_0021"><code>set-source-volume!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Environment.html#index-set_002dspeed_002dof_002dsound_0021"><code>set-speed-of-sound!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-Environment.html">The Environment</a></td></tr>
<tr><td></td><td valign="top"><a href="Sprites.html#index-set_002dsprite_002dbatch_002dtexture_0021"><code>set-sprite-batch-texture!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sprites.html">Sprites</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-set_002dvec2_0021"><code>set-vec2!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-set_002dvec2_002dx_0021"><code>set-vec2-x!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-set_002dvec2_002dy_0021"><code>set-vec2-y!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-set_002dvec3_0021"><code>set-vec3!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-set_002dvec3_002dx_0021"><code>set-vec3-x!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-set_002dvec3_002dy_0021"><code>set-vec3-y!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-set_002dvec3_002dz_0021"><code>set-vec3-z!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Window-Manipulation.html#index-set_002dwindow_002dborder_0021"><code>set-window-border!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Window-Manipulation.html">Window Manipulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Window-Manipulation.html#index-set_002dwindow_002dfullscreen_0021"><code>set-window-fullscreen!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Window-Manipulation.html">Window Manipulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Window-Manipulation.html#index-set_002dwindow_002dposition_0021"><code>set-window-position!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Window-Manipulation.html">Window Manipulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Window-Manipulation.html#index-set_002dwindow_002dsize_0021"><code>set-window-size!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Window-Manipulation.html">Window Manipulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Window-Manipulation.html#index-set_002dwindow_002dtitle_0021"><code>set-window-title!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Window-Manipulation.html">Window Manipulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Rendering-Engine.html#index-shader_002dapply"><code>shader-apply</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rendering-Engine.html">Rendering Engine</a></td></tr>
<tr><td></td><td valign="top"><a href="Rendering-Engine.html#index-shader_002dapply_002a"><code>shader-apply*</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rendering-Engine.html">Rendering Engine</a></td></tr>
<tr><td></td><td valign="top"><a href="Rendering-Engine.html#index-shader_002dapply_002finstanced"><code>shader-apply/instanced</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rendering-Engine.html">Rendering Engine</a></td></tr>
<tr><td></td><td valign="top"><a href="Rendering-Engine.html#index-shader_002dapply_002finstanced-1"><code>shader-apply/instanced</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rendering-Engine.html">Rendering Engine</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-shader_002dattributes"><code>shader-attributes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-shader_002ddata_002dtype_003f"><code>shader-data-type?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-shader_002duniform"><code>shader-uniform</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-shader_002duniform_002dset_0021"><code>shader-uniform-set!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-shader_002duniforms"><code>shader-uniforms</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-shader_003f"><code>shader?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Window-Manipulation.html#index-show_002dwindow_0021"><code>show-window!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Window-Manipulation.html">Window Manipulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Skyboxes.html#index-skybox_002dcube_002dmap"><code>skybox-cube-map</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Skyboxes.html">Skyboxes</a></td></tr>
<tr><td></td><td valign="top"><a href="Skyboxes.html#index-skybox_003f"><code>skybox?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Skyboxes.html">Skyboxes</a></td></tr>
<tr><td></td><td valign="top"><a href="Scripts.html#index-sleep"><code>sleep</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Scripts.html">Scripts</a></td></tr>
<tr><td></td><td valign="top"><a href="Grids.html#index-slide"><code>slide</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Grids.html">Grids</a></td></tr>
<tr><td></td><td valign="top"><a href="Easings.html#index-smoothstep"><code>smoothstep</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Easings.html">Easings</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002dcone_002dinner_002dangle"><code>source-cone-inner-angle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002dcone_002douter_002dangle"><code>source-cone-outer-angle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002dcone_002douter_002dvolume"><code>source-cone-outer-volume</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002ddirection"><code>source-direction</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002dmax_002ddistance"><code>source-max-distance</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002dmax_002dvolume"><code>source-max-volume</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002dmin_002dvolume"><code>source-min-volume</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002dpause"><code>source-pause</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002dpaused_003f"><code>source-paused?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002dpitch"><code>source-pitch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002dplay"><code>source-play</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002dplaying_003f"><code>source-playing?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002dposition"><code>source-position</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002dreference_002ddistance"><code>source-reference-distance</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002drelative_003f"><code>source-relative?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002drewind"><code>source-rewind</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002drolloff_002dfactor"><code>source-rolloff-factor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002dstop"><code>source-stop</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002dstopped_003f"><code>source-stopped?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002dtoggle"><code>source-toggle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002dvelocity"><code>source-velocity</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_002dvolume"><code>source-volume</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-source_003f"><code>source?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Scripts.html#index-spawn_002dscript"><code>spawn-script</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Scripts.html">Scripts</a></td></tr>
<tr><td></td><td valign="top"><a href="The-Environment.html#index-speed_002dof_002dsound"><code>speed-of-sound</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="The-Environment.html">The Environment</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-split_002dtexture"><code>split-texture</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Lights.html#index-spot_002dlight_003f"><code>spot-light?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Lights.html">Lights</a></td></tr>
<tr><td></td><td valign="top"><a href="Sprites.html#index-sprite_002dbatch_002dadd_0021"><code>sprite-batch-add!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sprites.html">Sprites</a></td></tr>
<tr><td></td><td valign="top"><a href="Sprites.html#index-sprite_002dbatch_002dclear_0021"><code>sprite-batch-clear!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sprites.html">Sprites</a></td></tr>
<tr><td></td><td valign="top"><a href="Sprites.html#index-sprite_002dbatch_002dtexture"><code>sprite-batch-texture</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sprites.html">Sprites</a></td></tr>
<tr><td></td><td valign="top"><a href="Sprites.html#index-sprite_002dbatch_003f"><code>sprite-batch?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sprites.html">Sprites</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-square"><code>square</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Files.html#index-static_002daudio_003f"><code>static-audio?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Files.html">Audio Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-static_002dsource_003f"><code>static-source?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-stencil_002dtest_002dfunction_002dback"><code>stencil-test-function-back</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-stencil_002dtest_002dfunction_002dfront"><code>stencil-test-function-front</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-stencil_002dtest_002dfunction_002dmask_002dback"><code>stencil-test-function-mask-back</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-stencil_002dtest_002dfunction_002dmask_002dfront"><code>stencil-test-function-mask-front</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-stencil_002dtest_002dmask_002dback"><code>stencil-test-mask-back</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-stencil_002dtest_002dmask_002dfront"><code>stencil-test-mask-front</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-stencil_002dtest_002don_002ddepth_002dfail_002dback"><code>stencil-test-on-depth-fail-back</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-stencil_002dtest_002don_002ddepth_002dfail_002dfront"><code>stencil-test-on-depth-fail-front</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-stencil_002dtest_002don_002dfail_002dback"><code>stencil-test-on-fail-back</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-stencil_002dtest_002don_002dfail_002dfront"><code>stencil-test-on-fail-front</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-stencil_002dtest_002don_002dpass_002dback"><code>stencil-test-on-pass-back</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-stencil_002dtest_002don_002dpass_002dfront"><code>stencil-test-on-pass-front</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-stencil_002dtest_002dreference_002dback"><code>stencil-test-reference-back</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-stencil_002dtest_002dreference_002dfront"><code>stencil-test-reference-front</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Render-Settings.html#index-stencil_002dtest_003f"><code>stencil-test?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Render-Settings.html">Render Settings</a></td></tr>
<tr><td></td><td valign="top"><a href="Audio-Files.html#index-streaming_002daudio_003f"><code>streaming-audio?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Audio-Files.html">Audio Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Sources.html#index-streaming_002dsource_003f"><code>streaming-source?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Sources.html">Sources</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-string_002d_003ecolor"><code>string-&gt;color</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-strings_002d_003eshader"><code>strings-&gt;shader</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-stroke"><code>stroke</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-superimpose"><code>superimpose</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-T">T</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002daluminium_002d1"><code>tango-aluminium-1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002daluminium_002d2"><code>tango-aluminium-2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002daluminium_002d3"><code>tango-aluminium-3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002daluminium_002d4"><code>tango-aluminium-4</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002daluminium_002d5"><code>tango-aluminium-5</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002daluminium_002d6"><code>tango-aluminium-6</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002dbutter"><code>tango-butter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002dchameleon"><code>tango-chameleon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002dchocolate"><code>tango-chocolate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002ddark_002dbutter"><code>tango-dark-butter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002ddark_002dchameleon"><code>tango-dark-chameleon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002ddark_002dchocolate"><code>tango-dark-chocolate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002ddark_002dorange"><code>tango-dark-orange</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002ddark_002dplum"><code>tango-dark-plum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002ddark_002dscarlet_002dred"><code>tango-dark-scarlet-red</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002ddark_002dsky_002dblue"><code>tango-dark-sky-blue</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002dlight_002dbutter"><code>tango-light-butter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002dlight_002dchameleon"><code>tango-light-chameleon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002dlight_002dchocolate"><code>tango-light-chocolate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002dlight_002dorange"><code>tango-light-orange</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002dlight_002dplum"><code>tango-light-plum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002dlight_002dscarlet_002dred"><code>tango-light-scarlet-red</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002dlight_002dsky_002dblue"><code>tango-light-sky-blue</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002dorange"><code>tango-orange</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002dplum"><code>tango-plum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002dscarlet_002dred"><code>tango-scarlet-red</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-tango_002dsky_002dblue"><code>tango-sky-blue</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Basics.html#index-tau"><code>tau</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basics.html">Basics</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-texture_002datlas_002dref"><code>texture-atlas-ref</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-texture_002datlas_002dtexture"><code>texture-atlas-texture</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-texture_002datlas_003f"><code>texture-atlas?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-texture_002dheight"><code>texture-height</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-texture_002dmag_002dfilter"><code>texture-mag-filter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-texture_002dmin_002dfilter"><code>texture-min-filter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-texture_002dparent"><code>texture-parent</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-texture_002dregion_003f"><code>texture-region?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-texture_002dwidth"><code>texture-width</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-texture_002dwrap_002ds"><code>texture-wrap-s</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-texture_002dwrap_002dt"><code>texture-wrap-t</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Textures.html#index-texture_003f"><code>texture?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Textures.html">Textures</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tile_002danimation"><code>tile-animation</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tile_002did"><code>tile-id</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tile_002dlayer_002dheight"><code>tile-layer-height</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tile_002dlayer_002dname"><code>tile-layer-name</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tile_002dlayer_002dproperties"><code>tile-layer-properties</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tile_002dlayer_002dtiles"><code>tile-layer-tiles</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tile_002dlayer_002dwidth"><code>tile-layer-width</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tile_002dlayer_003f"><code>tile-layer?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tile_002dmap_002dheight"><code>tile-map-height</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tile_002dmap_002dlayers"><code>tile-map-layers</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tile_002dmap_002dorientation"><code>tile-map-orientation</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tile_002dmap_002dproperties"><code>tile-map-properties</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tile_002dmap_002dtile_002dheight"><code>tile-map-tile-height</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tile_002dmap_002dtile_002dwidth"><code>tile-map-tile-width</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tile_002dmap_002dtilesets"><code>tile-map-tilesets</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tile_002dmap_002dwidth"><code>tile-map-width</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tile_002dmap_003f"><code>tile-map?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tile_002dproperties"><code>tile-properties</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tile_003f"><code>tile?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tileset_002datlas"><code>tileset-atlas</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tileset_002dcolumns"><code>tileset-columns</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tileset_002dfirst_002dgid"><code>tileset-first-gid</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tileset_002dname"><code>tileset-name</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tileset_002dproperties"><code>tileset-properties</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tileset_002drows"><code>tileset-rows</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tileset_002dsize"><code>tileset-size</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tileset_002dtile_002dheight"><code>tileset-tile-height</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tileset_002dtile_002dwidth"><code>tileset-tile-width</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tileset_002dtiles"><code>tileset-tiles</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Tile-Maps.html#index-tileset_003f"><code>tileset?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tile-Maps.html">Tile Maps</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-transform"><code>transform</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-translate"><code>translate</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-transparency"><code>transparency</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Tweening.html#index-tween"><code>tween</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Tweening.html">Tweening</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-U">U</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-uniform_002dname"><code>uniform-name</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-uniform_002dtype"><code>uniform-type</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-uniform_002dvalue"><code>uniform-value</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-uniform_003f"><code>uniform?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Shaders.html#index-unsigned_002dint"><code>unsigned-int</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Shaders.html">Shaders</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-up_002dsplit"><code>up-split</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Agendas.html#index-update_002dagenda"><code>update-agenda</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Agendas.html">Agendas</a></td></tr>
<tr><td></td><td valign="top"><a href="Particles.html#index-update_002dparticles"><code>update-particles</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Particles.html">Particles</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-V">V</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec2"><code>vec2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec2_002a"><code>vec2*</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec2_002b"><code>vec2+</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec2_002d"><code>vec2-</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec2_002dadd_0021"><code>vec2-add!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Rectangles.html#index-vec2_002dclamp_002dto_002drect_0021"><code>vec2-clamp-to-rect!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rectangles.html">Rectangles</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec2_002dcopy"><code>vec2-copy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec2_002dcopy_0021"><code>vec2-copy!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec2_002ddot"><code>vec2-dot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec2_002dmagnitude"><code>vec2-magnitude</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec2_002dmult_0021"><code>vec2-mult!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec2_002dnormalize"><code>vec2-normalize</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec2_002dsub_0021"><code>vec2-sub!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec2_002dx"><code>vec2-x</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec2_002dy"><code>vec2-y</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec2_002fpolar"><code>vec2/polar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec2_003f"><code>vec2?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec3"><code>vec3</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec3_002a"><code>vec3*</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec3_002b"><code>vec3+</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec3_002d"><code>vec3-</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec3_002dadd_0021"><code>vec3-add!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec3_002dcopy"><code>vec3-copy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec3_002dcopy_0021"><code>vec3-copy!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec3_002dcross"><code>vec3-cross</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec3_002dcross_0021"><code>vec3-cross!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec3_002ddot"><code>vec3-dot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec3_002dmagnitude"><code>vec3-magnitude</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec3_002dmult_0021"><code>vec3-mult!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec3_002dnormalize"><code>vec3-normalize</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec3_002dsub_0021"><code>vec3-sub!</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec3_002dx"><code>vec3-x</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec3_002dy"><code>vec3-y</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec3_002dz"><code>vec3-z</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Vectors.html#index-vec3_003f"><code>vec3?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vectors.html">Vectors</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-vertex_002darray_002dattributes"><code>vertex-array-attributes</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-vertex_002darray_002dindices"><code>vertex-array-indices</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-vertex_002darray_002dmode"><code>vertex-array-mode</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-vertex_002darray_003f"><code>vertex-array?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-vertex_002dattribute_002d_003ebuffer"><code>vertex-attribute-&gt;buffer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-vertex_002dattribute_002dcomponent_002dtype"><code>vertex-attribute-component-type</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-vertex_002dattribute_002ddivisor"><code>vertex-attribute-divisor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-vertex_002dattribute_002dname"><code>vertex-attribute-name</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-vertex_002dattribute_002doffset"><code>vertex-attribute-offset</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-vertex_002dattribute_002dtype"><code>vertex-attribute-type</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-vertex_002dattribute_003f"><code>vertex-attribute?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-vertical_002dflip"><code>vertical-flip</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td></td><td valign="top"><a href="Viewports.html#index-viewport_002dclear_002dcolor"><code>viewport-clear-color</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Viewports.html">Viewports</a></td></tr>
<tr><td></td><td valign="top"><a href="Viewports.html#index-viewport_002dclear_002dflags"><code>viewport-clear-flags</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Viewports.html">Viewports</a></td></tr>
<tr><td></td><td valign="top"><a href="Viewports.html#index-viewport_002dheight"><code>viewport-height</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Viewports.html">Viewports</a></td></tr>
<tr><td></td><td valign="top"><a href="Viewports.html#index-viewport_002dwidth"><code>viewport-width</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Viewports.html">Viewports</a></td></tr>
<tr><td></td><td valign="top"><a href="Viewports.html#index-viewport_002dx"><code>viewport-x</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Viewports.html">Viewports</a></td></tr>
<tr><td></td><td valign="top"><a href="Viewports.html#index-viewport_002dy"><code>viewport-y</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Viewports.html">Viewports</a></td></tr>
<tr><td></td><td valign="top"><a href="Viewports.html#index-viewport_003f"><code>viewport?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Viewports.html">Viewports</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-W">W</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Scripts.html#index-wait_002duntil"><code>wait-until</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Scripts.html">Scripts</a></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-white"><code>white</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Window-Manipulation.html#index-window_002dheight"><code>window-height</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Window-Manipulation.html">Window Manipulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Window-Manipulation.html#index-window_002dtitle"><code>window-title</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Window-Manipulation.html">Window Manipulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Window-Manipulation.html#index-window_002dwidth"><code>window-width</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Window-Manipulation.html">Window Manipulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Window-Manipulation.html#index-window_002dx"><code>window-x</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Window-Manipulation.html">Window Manipulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Window-Manipulation.html#index-window_002dy"><code>window-y</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Window-Manipulation.html">Window Manipulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Window-Manipulation.html#index-window_003f"><code>window?</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Window-Manipulation.html">Window Manipulation</a></td></tr>
<tr><td></td><td valign="top"><a href="Agendas.html#index-with_002dagenda"><code>with-agenda</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Agendas.html">Agendas</a></td></tr>
<tr><td></td><td valign="top"><a href="Rendering-Engine.html#index-with_002dgraphics_002dstate"><code>with-graphics-state</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rendering-Engine.html">Rendering Engine</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-with_002dmapped_002dbuffer"><code>with-mapped-buffer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Buffers.html#index-with_002dmapped_002dvertex_002dattribute"><code>with-mapped-vertex-attribute</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Buffers.html">Buffers</a></td></tr>
<tr><td></td><td valign="top"><a href="Rendering-Engine.html#index-with_002dprojection"><code>with-projection</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Rendering-Engine.html">Rendering Engine</a></td></tr>
<tr><td></td><td valign="top"><a href="Vector-Paths.html#index-with_002dstyle"><code>with-style</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Paths.html">Vector Paths</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th id="Index_fn_letter-Y">Y</th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Colors.html#index-yellow"><code>yellow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Colors.html">Colors</a></td></tr>
<tr><td></td><td valign="top"><a href="Scripts.html#index-yield"><code>yield</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Scripts.html">Scripts</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
</table>
<table><tr><th valign="top">Jump to: &nbsp; </th><td><a class="summary-letter" href="#Index_fn_symbol-1"><b>%</b></a>
 &nbsp; 
<br>
<a class="summary-letter" href="#Index_fn_letter-A"><b>A</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-B"><b>B</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-C"><b>C</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-D"><b>D</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-E"><b>E</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-F"><b>F</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-G"><b>G</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-H"><b>H</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-I"><b>I</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-J"><b>J</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-K"><b>K</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-L"><b>L</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-M"><b>M</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-N"><b>N</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-O"><b>O</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-P"><b>P</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-Q"><b>Q</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-R"><b>R</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-S"><b>S</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-T"><b>T</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-U"><b>U</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-V"><b>V</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-W"><b>W</b></a>
 &nbsp; 
<a class="summary-letter" href="#Index_fn_letter-Y"><b>Y</b></a>
 &nbsp; 
</td></tr></table>

<hr>
<div class="header">
<p>
Previous: <a href="Copying-This-Manual.html" accesskey="p" rel="prev">Copying This Manual</a>, Up: <a href="index.html" accesskey="u" rel="up">Top</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Index" title="Index" rel="index">Index</a>]</p>
</div>



</body>
</html>