-
Notifications
You must be signed in to change notification settings - Fork 74
/
Journal of Graphics Tools_ JGT.html
1721 lines (1582 loc) · 125 KB
/
Journal of Graphics Tools_ JGT.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<!-- saved from url=(0057)http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>
Journal of Graphics Tools: JGT
</title>
<link rev="made" href="mailto:[email protected]">
</head>
<body>
<h1>
Table of contents for issues of Journal of Graphics Tools: JGT
</h1>
<p>
Last update: <b>
<font color="#ff0000">
Tue Sep 15 07:31:56 MDT 2015
</font>
</b>
<a href="http://validator.w3.org/check/referer">
<img align="MIDDLE" border="0" src="./Journal of Graphics Tools_ JGT_files/valid-html32.png" alt="Valid HTML 3.2!" height="31" width="88">
</a>
</p>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#1(1):1996">Volume <strong>1</strong>, Number <strong>1</strong>, <strong>1996</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#1(2):1996">Volume <strong>1</strong>, Number <strong>2</strong>, <strong>1996</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#1(3):1996">Volume <strong>1</strong>, Number <strong>3</strong>, <strong>1996</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#1(4):1996">Volume <strong>1</strong>, Number <strong>4</strong>, <strong>1996</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#2(1):1997">Volume <strong>2</strong>, Number <strong>1</strong>, <strong>1997</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#2(2):1997">Volume <strong>2</strong>, Number <strong>2</strong>, <strong>1997</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#2(3):1997">Volume <strong>2</strong>, Number <strong>3</strong>, <strong>1997</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#2(4):1997">Volume <strong>2</strong>, Number <strong>4</strong>, <strong>1997</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#3(1):1998">Volume <strong>3</strong>, Number <strong>1</strong>, <strong>1998</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#3(2):1998">Volume <strong>3</strong>, Number <strong>2</strong>, <strong>1998</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#3(3):1998">Volume <strong>3</strong>, Number <strong>3</strong>, <strong>1998</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#3(4):1998">Volume <strong>3</strong>, Number <strong>4</strong>, <strong>1998</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#4(1):1999">Volume <strong>4</strong>, Number <strong>1</strong>, <strong>1999</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#4(2):1999">Volume <strong>4</strong>, Number <strong>2</strong>, <strong>1999</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#4(3):1999">Volume <strong>4</strong>, Number <strong>3</strong>, <strong>1999</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#4(4):1999">Volume <strong>4</strong>, Number <strong>4</strong>, <strong>1999</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#5(1):2000">Volume <strong>5</strong>, Number <strong>1</strong>, <strong>2000</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#5(2):2000">Volume <strong>5</strong>, Number <strong>2</strong>, <strong>2000</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#5(3):2000">Volume <strong>5</strong>, Number <strong>3</strong>, <strong>2000</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#5(4):2000">Volume <strong>5</strong>, Number <strong>4</strong>, <strong>2000</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#6(1):2001">Volume <strong>6</strong>, Number <strong>1</strong>, <strong>2001</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#6(2):2001">Volume <strong>6</strong>, Number <strong>2</strong>, <strong>2001</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#6(3):2001">Volume <strong>6</strong>, Number <strong>3</strong>, <strong>2001</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#6(4):2002">Volume <strong>6</strong>, Number <strong>4</strong>, <strong>2002</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#7(1):2002">Volume <strong>7</strong>, Number <strong>1</strong>, <strong>2002</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#7(2):2002">Volume <strong>7</strong>, Number <strong>2</strong>, <strong>2002</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#7(3):2002">Volume <strong>7</strong>, Number <strong>3</strong>, <strong>2002</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#7(4):2002">Volume <strong>7</strong>, Number <strong>4</strong>, <strong>2002</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#8(1):2003">Volume <strong>8</strong>, Number <strong>1</strong>, <strong>2003</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#8(2):2003">Volume <strong>8</strong>, Number <strong>2</strong>, <strong>2003</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#8(3):2003">Volume <strong>8</strong>, Number <strong>3</strong>, <strong>2003</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#8(4):2003">Volume <strong>8</strong>, Number <strong>4</strong>, <strong>2003</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#9(1):2004">Volume <strong>9</strong>, Number <strong>1</strong>, <strong>2004</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#9(2):2004">Volume <strong>9</strong>, Number <strong>2</strong>, <strong>2004</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#9(3):2004">Volume <strong>9</strong>, Number <strong>3</strong>, <strong>2004</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#9(4):2004">Volume <strong>9</strong>, Number <strong>4</strong>, <strong>2004</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#10(1):2005">Volume <strong>10</strong>, Number <strong>1</strong>, <strong>2005</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#10(2):2005">Volume <strong>10</strong>, Number <strong>2</strong>, <strong>2005</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#10(3):2005">Volume <strong>10</strong>, Number <strong>3</strong>, <strong>2005</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#10(4):2005">Volume <strong>10</strong>, Number <strong>4</strong>, <strong>2005</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#11(1):2006">Volume <strong>11</strong>, Number <strong>1</strong>, <strong>2006</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#11(2):2006">Volume <strong>11</strong>, Number <strong>2</strong>, <strong>2006</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#11(3):2006">Volume <strong>11</strong>, Number <strong>3</strong>, <strong>2006</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#11(4):2006">Volume <strong>11</strong>, Number <strong>4</strong>, <strong>2006</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#12(1):2007">Volume <strong>12</strong>, Number <strong>1</strong>, <strong>2007</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#12(2):2007">Volume <strong>12</strong>, Number <strong>2</strong>, <strong>2007</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#12(3):2007">Volume <strong>12</strong>, Number <strong>3</strong>, <strong>2007</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#12(4):2007">Volume <strong>12</strong>, Number <strong>4</strong>, <strong>2007</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#13(1):2008">Volume <strong>13</strong>, Number <strong>1</strong>, <strong>2008</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#13(2):2008">Volume <strong>13</strong>, Number <strong>2</strong>, <strong>2008</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#13(3):2008">Volume <strong>13</strong>, Number <strong>3</strong>, <strong>2008</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#13(4):2008">Volume <strong>13</strong>, Number <strong>4</strong>, <strong>2008</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#14(1):2009">Volume <strong>14</strong>, Number <strong>1</strong>, <strong>2009</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#14(2):2009">Volume <strong>14</strong>, Number <strong>2</strong>, <strong>2009</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#14(3):2009">Volume <strong>14</strong>, Number <strong>3</strong>, <strong>2009</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#14(4):2009">Volume <strong>14</strong>, Number <strong>4</strong>, <strong>2009</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#15(1):2010">Volume <strong>15</strong>, Number <strong>1</strong>, <strong>2010</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#15(2):2011">Volume <strong>15</strong>, Number <strong>2</strong>, <strong>2011</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#15(3):2011">Volume <strong>15</strong>, Number <strong>3</strong>, <strong>2011</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#15(4):2011">Volume <strong>15</strong>, Number <strong>4</strong>, <strong>2011</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#16(1):2012">Volume <strong>16</strong>, Number <strong>1</strong>, <strong>2012</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#16(2):2012">Volume <strong>16</strong>, Number <strong>2</strong>, <strong>2012</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#16(3):2012">Volume <strong>16</strong>, Number <strong>3</strong>, <strong>2012</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#16(4):2012">Volume <strong>16</strong>, Number <strong>4</strong>, <strong>2012</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#17(1--2):2013">Volume <strong>17</strong>, Number <strong>1--2</strong>, <strong>2013</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#17(3):2013">Volume <strong>17</strong>, Number <strong>3</strong>, <strong>2013</strong></a><br>
<a href="http://ftp.math.utah.edu/pub/tex/bib/toc/jgraphtools.html#17(4):2013">Volume <strong>17</strong>, Number <strong>4</strong>, <strong>2013</strong></a><br>
<br>
<hr>
<h1>
<a name="1(1):1996">
Journal of Graphics Tools: JGT<br>
Volume 1, Number 1, 1996
</a>
</h1>
<pre> Alvy Ray Smith and
Eric Ray Lyons <a href="http://www.acm.org/jgt/papers/SmithLyons96/">HWB: A more intuitive hue-based color</a>
model . . . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Smith:1996:HMI">3--17</a>
Andrew Bigos <a href="http://www.acm.org/jgt/papers/Bigos96/">Avoiding buffer clears</a> . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Bigos:1996:ABC">19--20</a>
Jeff Goldsmith and
Allan S. Jacobson <a href="http://www.acm.org/jgt/papers/GoldsmithJacobson96/">Marching cubes in cylindrical and</a>
spherical coordinates . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Goldsmith:1996:MCC">21--32</a>
Philip M. Hubbard <a href="http://www.acm.org/jgt/papers/Hubbard96/">Improving accuracy in a robust algorithm</a>
for $3$D Voronoi diagrams . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Hubbard:1996:IAR">33--45</a>
</pre>
<hr>
<h1>
<a name="1(2):1996">
Journal of Graphics Tools: JGT<br>
Volume 1, Number 2, 1996
</a>
</h1>
<pre> P. Cignoni and
C. Montani and
R. Scopigno <a href="http://www.acm.org/jgt/papers/CignoniMontaniScopigno96/">Triangulating convex polygons having</a>
${T}$-vertices . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Cignoni:1996:TCP">1--4</a>
Luiz Velho <a href="http://www.acm.org/jgt/papers/Velho96/">Simple and efficient polygonization of</a>
implicit surfaces . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Velho:1996:SEP">5--24</a>
C. W. A. M. van Overveld and
Brian Wyvill <a href="http://www.acm.org/jgt/papers/vanOverVeldWyvill96/">Hi-speed, hi-fi hi-lights: a fast</a>
algorithm for the specular term in the
Phong illumination model . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#vanOverveld:1996:HSH">25--30</a>
Brian Mirtich <a href="http://www.acm.org/jgt/papers/Mirtich96/">Fast and accurate computation of</a>
polyhedral mass properties . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Mirtich:1996:FAC">31--50</a>
</pre>
<hr>
<h1>
<a name="1(3):1996">
Journal of Graphics Tools: JGT<br>
Volume 1, Number 3, 1996
</a>
</h1>
<pre> Eric Haines and
Steven Worley <a href="http://www.acm.org/jgt/papers/HainesWorley96/">Fast, Low Memory ${Z}$-Buffering when</a>
Performing Medium-Quality Rendering . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Haines:1996:FLM">1--5</a>
Dave Hutchinson and
Terry Hewitt <a href="http://www.acm.org/jgt/papers/HutchinsonHewitt96/">Rapidly Visualizing Isophotes</a> . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Hutchinson:1996:RVI">7--12</a>
C. W. A. M. van Overveld and
Brian Wyvill <a href="http://www.acm.org/jgt/papers/vanOverVeldWyvill96b/">Banishing bad buckling</a> . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#vanOverveld:1996:BBB">13--28</a>
Larry Gritz and
James K. Hahn <a href="http://www.acm.org/jgt/papers/GritzHahn96/">BMRT: A global illumination</a>
implementation of the RenderMan standard <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Gritz:1996:BGI">29--47</a>
</pre>
<hr>
<h1>
<a name="1(4):1996">
Journal of Graphics Tools: JGT<br>
Volume 1, Number 4, 1996
</a>
</h1>
<pre> Scott R. Nelson <a href="http://www.acm.org/jgt/papers/Nelson96/">Twelve characteristics of correct</a>
antialiased lines . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Nelson:1996:TCC">1--20</a>
Vishwa Ranjan and
Alain Fournier <a href="http://www.acm.org/jgt/papers/RanjanFournier96/">Creating union of spheres models from</a>
multiple views . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Ranjan:1996:CUS">21--39</a>
Andrei Sherstyuk <a href="http://www.acm.org/jgt/papers/Sherstyuk96/">Ray tracing with selective visibility</a> <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Sherstyuk:1996:RTS">41--46</a>
<br>
</pre>
<hr>
<h1>
<a name="2(1):1997">
Journal of Graphics Tools: JGT<br>
Volume 2, Number 1, 1997
</a>
</h1>
<pre> Ronen Barzel <a href="http://www.acm.org/jgt/papers/Barzel97/">Lighting Controls for Computer</a>
Cinematography . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Barzel:1997:LCC">1--20</a>
Tomas Möller and
Ben Trumbore <a href="http://www.acm.org/jgt/papers/MollerTrumbore97/">Fast, Minimum Storage Ray-Triangle</a>
Intersection . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Moller:1997:FMS">21--28</a>
Scott R. Nelson <a href="http://www.acm.org/jgt/papers/Nelson97/">High quality hardware line antialiasing</a> <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Nelson:1997:HQH">29--46</a>
</pre>
<hr>
<h1>
<a name="2(2):1997">
Journal of Graphics Tools: JGT<br>
Volume 2, Number 2, 1997
</a>
</h1>
<pre> A. C. Telea and
C. W. A. M. van Overveld <a href="http://www.acm.org/jgt/papers/TeleaVanOverveld97/">The Close Objects Buffer: A Sharp Shadow</a>
Detection Technique for Radiosity
Methods . . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Telea:1997:COB">1--8</a>
Tien-Tsin Wong and
Wai-Shing Luk and
Pheng-Ann Heng <a href="http://www.acm.org/jgt/papers/WongLukHeng97/">Sampling with Hammersley and Halton</a>
Points . . . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Wong:1997:SHH">9--24</a>
Tomas Möller <a href="http://www.acm.org/jgt/papers/Moller97/">A Fast Triangle-Triangle Intersection</a>
Test . . . . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Moller:1997:FTT">25--30</a>
A. J. Chung and
A. J. Field <a href="http://www.acm.org/jgt/papers/ChungField97/">Rendering Radiosity Solutions by</a>
Adaptive Gathering . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Chung:1997:RRS">31--44</a>
</pre>
<hr>
<h1>
<a name="2(3):1997">
Journal of Graphics Tools: JGT<br>
Volume 2, Number 3, 1997
</a>
</h1>
<pre> C. W. A. M. van Overveld and
M. G. J. R. Stalpers <a href="http://www.acm.org/jgt/papers/StalpersVanOverveld97/">Deforming Geometric Models Based on a</a>
Polygonal Skeleton Mesh . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#vanOverveld:1997:DGM">1--14</a>
P. Cignoni and
C. Montani and
R. Scopigno <a href="http://www.acm.org/jgt/papers/CignoniMontaniScopigno97/">Computer-Assisted Generation of Bas- and</a>
High-Reliefs . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Cignoni:1997:CAG">15--28</a>
Michael Bailey and
Dru Clark <a href="http://www.acm.org/jgt/papers/BaileyClark97/">Encoding Three-Dimensional Surface</a>
Information in a Texture Vector . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Bailey:1997:ETD">29--35</a>
Zhigang Xiang <a href="http://www.acm.org/jgt/papers/Xiang97/">A Tri-Plane Cursor</a> . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Xiang:1997:TPC">37--43</a>
Peter Shirley and
Kenneth Chiu <a href="http://www.acm.org/jgt/papers/ShirleyChiu97/">A Low Distortion Map Between Disk and</a>
Square . . . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Shirley:1997:LDM">45--52</a>
</pre>
<hr>
<h1>
<a name="2(4):1997">
Journal of Graphics Tools: JGT<br>
Volume 2, Number 4, 1997
</a>
</h1>
<pre> Gino van den Bergen <a href="http://www.acm.org/jgt/papers/vanDenBergen97/">Efficient Collision Detection of Complex</a>
Deformable Models using AABB Trees . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#vandenBergen:1997:ECD">1--14</a>
Vlastimil Havran and
Tomas Kopal and
Jiri Bittner and
Jiri Zara <a href="http://www.acm.org/jgt/papers/HavranKopalBittnerZara97/">Fast Robust BSP Tree Traversal Algorithm</a>
for Ray Tracing . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Havran:1997:FRB">15--24</a>
Martin Held <a href="http://www.acm.org/jgt/papers/Held97/">ERIT: A Collection of Efficient and</a>
Reliable Intersection Tests . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Held:1997:ECE">25--44</a>
C. W. A. M. van Overveld <a href="http://www.acm.org/jgt/papers/vanOverveld97/">Color Waves: A Simple Heuristic for</a>
Choosing False Colors . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#vanOverveld:1997:CWS">45--50</a>
<br>
</pre>
<hr>
<h1>
<a name="3(1):1998">
Journal of Graphics Tools: JGT<br>
Volume 3, Number 1, 1998
</a>
</h1>
<pre> Andreas Johannsen and
Michael B. Carter <a href="http://www.acm.org/jgt/papers/JohannsenCarter98/">Clustered Backface Culling</a> . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Johannsen:1998:CBC">1--14</a>
Gregory Ward Larson <a href="http://www.acm.org/jgt/papers/Larson98/">LogLuv Encoding for Full-Gamut,</a>
High-Dynamic Range Images . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Larson:1998:LEF">15--31</a>
Nelson Max <a href="http://www.acm.org/jgt/papers/Max98/">A One-Pass Version of Two-Pass Image</a>
Resampling . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Max:1998:OPV">33--41</a>
Grit Thürmer and
Charles A. Wüthrich <a href="http://www.acm.org/jgt/papers/ThurmerWuthrich98/">Computing Vertex Normals from Polygonal</a>
Facets . . . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Thurmer:1998:CVN">43--46</a>
</pre>
<hr>
<h1>
<a name="3(2):1998">
Journal of Graphics Tools: JGT<br>
Volume 3, Number 2, 1998
</a>
</h1>
<pre> Brian Smits <a href="http://www.acm.org/jgt/papers/Smits98/">Efficiency Issues for Ray Tracing</a> . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Smits:1998:EIR">1--14</a>
Andrew Woo <a href="http://www.acm.org/jgt/papers/Woo98/">Chordlength Texturing of Spline Surfaces</a> <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Woo:1998:CTS">15--19</a>
Allen Van Gelder <a href="http://www.acm.org/jgt/papers/VanGelder98/">Approximate Simulation of Elastic</a>
Membranes by Triangulated Spring Meshes <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#VanGelder:1998:ASE">21--41</a>
</pre>
<hr>
<h1>
<a name="3(3):1998">
Journal of Graphics Tools: JGT<br>
Volume 3, Number 3, 1998
</a>
</h1>
<pre> Michael Bailey and
Dru Clark <a href="http://www.acm.org/jgt/papers/BaileyClark98/">Using ChromaDepth to Obtain Inexpensive</a>
Single-image Stereovision for Scientific
Visualization . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Bailey:1998:UCO">1--9</a>
Jieqing Feng and
Pheng-Ann Heng and
Tien-Tsin Wong <a href="http://www.acm.org/jgt/papers/FengHengWong98/">Accurate B-spline Free-Form Deformation</a>
of Polygonal Objects . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Feng:1998:ABS">11--27</a>
F. Sebastian Grassia <a href="http://www.acm.org/jgt/papers/Grassia98/">Practical Parameterization of Rotations</a>
Using the Exponential Map . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Grassia:1998:PPR">29--48</a>
</pre>
<hr>
<h1>
<a name="3(4):1998">
Journal of Graphics Tools: JGT<br>
Volume 3, Number 4, 1998
</a>
</h1>
<pre> Swen Campagna and
Leif Kobbelt and
Hans-Peter Seidel <a href="http://www.acm.org/jgt/papers/CampagnaKobbeltSeidel98/">Directed Edges --- A Scalable</a>
Representation for Triangle Meshes . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Campagna:1998:DES">1--12</a>
Chi-Wing Fu and
Tien-Tsin Wong and
Pheng-Ann Heng <a href="http://www.acm.org/jgt/papers/FuWongHeng98/">Triangle-Based View Interpolation</a>
without Depth-Buffering . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Fu:1998:TBV">13--31</a>
Hongsheng Chen and
Shiaofen Fang <a href="http://www.acm.org/jgt/papers/ChenFang98/">Fast Voxelization of Three-Dimensional</a>
Synthetic Objects . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Chen:1998:FVT">33--45</a>
<br>
</pre>
<hr>
<h1>
<a name="4(1):1999">
Journal of Graphics Tools: JGT<br>
Volume 4, Number 1, 1999
</a>
</h1>
<pre> Wencheng Wang and
Yanyun Chen and
Enhua Wu <a href="http://www.acm.org/jgt/papers/WangChenWu99/">A New Method for Polygon Edging on</a>
Shaded Surfaces . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Wang:1999:NMP">1--10</a>
Ming Wan and
Arie Kaufman and
Steve Bryson <a href="http://www.acm.org/jgt/papers/WanKaufmanBryson99/">Optimized Interpolation for Volume Ray</a>
Casting . . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Wan:1999:OIV">11--24</a>
Evaggelia-Aggeliki Karabassi and
Georgios Papaioannou and
Theoharis Theoharis <a href="http://www.acm.org/jgt/papers/KarabassiEtAl99/">Intersection Test for Collision</a>
Detection in Particle Systems . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Karabassi:1999:ITC">25--37</a>
Changyaw Wang and
Kelvin Sung <a href="http://www.acm.org/jgt/papers/WangSung99/">Multi-Stage $N$-rooks Sampling Method</a> <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Wang:1999:MSR">39--47</a>
</pre>
<hr>
<h1>
<a name="4(2):1999">
Journal of Graphics Tools: JGT<br>
Volume 4, Number 2, 1999
</a>
</h1>
<pre> Nelson Max <a href="http://www.acm.org/jgt/papers/Max99/">Weights for Computing Vertex Normals</a>
from Facet Normals . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Max:1999:WCV">1--6</a>
Gino van den Bergen <a href="http://www.acm.org/jgt/papers/vanDenBergen99/">A Fast and Robust GJK Implementation for</a>
Collision Detection of Convex Objects <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#vandenBergen:1999:FRG">7--25</a>
Hansong Zhang <a href="http://www.acm.org/jgt/papers/Zhang99/">A Derivation of Image-Based Rendering</a>
for Conventional Three-Dimensional
Graphics . . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Zhang:1999:DIB">27--36</a>
Dieter Schmalstieg and
Robert F. Tobler <a href="http://www.acm.org/jgt/papers/SchmalstiegTobler99/">Fast Projected Area Computation for</a>
Three-Dimensional Bounding Boxes . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Schmalstieg:1999:FPA">37--43</a>
</pre>
<hr>
<h1>
<a name="4(3):1999">
Journal of Graphics Tools: JGT<br>
Volume 4, Number 3, 1999
</a>
</h1>
<pre> Per H. Christensen <a href="http://www.acm.org/jgt/papers/Christensen99/">Faster Photon Map Global Illumination</a> <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Christensen:1999:FPM">1--10</a>
Seth Teller and
Michael Hohmeyer <a href="http://www.acm.org/jgt/papers/TellerHohmeyer99/">Determining the Lines Through Four Lines</a> <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Teller:1999:DLT">11--22</a>
Brett Keating <a href="http://www.acm.org/jgt/papers/Keating99/">Efficient Shadow Antialiasing Using an</a>
$A$-Buffer . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Keating:1999:ESA">23--33</a>
Patrick S. McCormick and
Charles Hansen and
Edward Angel <a href="http://www.acm.org/jgt/papers/McCormickHansenAngel99/">The Deferred Accumulation Buffer</a> . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#McCormick:1999:DAB">35--46</a>
</pre>
<hr>
<h1>
<a name="4(4):1999">
Journal of Graphics Tools: JGT<br>
Volume 4, Number 4, 1999
</a>
</h1>
<pre> Tomas Möller and
John F. Hughes <a href="http://www.acm.org/jgt/papers/MollerHughes99/">Efficiently Building a Matrix to Rotate</a>
One Vector to Another . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Moller:1999:EBM">1--4</a>
Evaggelia-Aggeliki Karabassi and
Georgios Papaioannou and
Theoharis Theoharis <a href="http://www.acm.org/jgt/papers/KarabassiEtAl99b/">A Fast Depth-Buffer-Based Voxelization</a>
Algorithm . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Karabassi:1999:FDB">5--10</a>
Brian Smits <a href="http://www.acm.org/jgt/papers/Smits99/">An RGB-to-Spectrum Conversion for</a>
Reflectances . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Smits:1999:RSC">11--22</a>
Michael Boyles and
Shiaofen Fang <a href="http://www.acm.org/jgt/papers/BoylesFang99/">Slicing-Based Volumetric Collision</a>
Detection . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Boyles:1999:SBV">23--32</a>
John F. Hughes and
Tomas Möller <a href="http://www.acm.org/jgt/papers/HughesMoller99/">Building an Orthonormal Basis from a</a>
Unit Vector . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Hughes:1999:BOB">33--35</a>
Frederick W. B. Li and
Rynson W. H. Lau <a href="http://www.acm.org/jgt/papers/LiLau99/">Incremental Polygonization of Deforming</a>
NURBS Surfaces . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Li:1999:IPD">37--50</a>
<br>
</pre>
<hr>
<h1>
<a name="5(1):2000">
Journal of Graphics Tools: JGT<br>
Volume 5, Number 1, 2000
</a>
</h1>
<pre> Jieqing Feng and
Qunsheng Peng <a href="http://www.acm.org/jgt/papers/FengPeng00/">Accelerating Accurate B-spline Free-Form</a>
Deformation of Polygonal Objects . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Feng:2000:AAB">1--8</a>
Ulf Assarsson and
Tomas Möller <a href="http://www.acm.org/jgt/papers/AssarssonMoller00/">Optimized View Frustum Culling</a>
Algorithms for Bounding Boxes . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Assarsson:2000:OVF">9--22</a>
Eric Haines <a href="http://www.acm.org/jgt/papers/Haines00/">A Shaft Culling Tool</a> . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Haines:2000:SCT">23--26</a>
William Martin and
Elaine Cohen and
Russell Fish and
Peter Shirley <a href="http://www.acm.org/jgt/papers/MartinCohenFishShirley00/">Practical Ray Tracing of Trimmed NURBS</a>
Surfaces . . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Martin:2000:PRT">27--52</a>
</pre>
<hr>
<h1>
<a name="5(2):2000">
Journal of Graphics Tools: JGT<br>
Volume 5, Number 2, 2000
</a>
</h1>
<pre> Kevin Chun-Ho Wong and
Pheng-Ann Heng and
Tien-Tsin Wong <a href="http://www.acm.org/jgt/papers/WongHengWong00/">Accelerating ``Intelligent Scissors''</a>
Using Slimmed Graphs . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Wong:2000:AIS">1--13</a>
Xiaogang Jin and
Y. F. Li <a href="http://www.acm.org/jgt/papers/JinLi00/">Three-Dimensional Deformation Using</a>
Directional Polar Coordinates . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Jin:2000:TDD">15--24</a>
Michael Ashikhmin and
Peter Shirley <a href="http://www.acm.org/jgt/papers/AshikhminShirley00/">An Anisotropic Phong BRDF Model</a> . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Ashikhmin:2000:APB">25--32</a>
Laurent Alonso and
Nicolas Holzschuch <a href="http://www.acm.org/jgt/papers/AlonsoHolzschuch00/">Using Graphics Hardware to Speed Up Your</a>
Visibility Queries . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Alonso:2000:UGH">33--47</a>
</pre>
<hr>
<h1>
<a name="5(3):2000">
Journal of Graphics Tools: JGT<br>
Volume 5, Number 3, 2000
</a>
</h1>
<pre> A. J. Chung and
A. J. Field <a href="http://www.acm.org/jgt/papers/AlonsoHolzschuch00/">A Simple Recursive Tessellator for</a>
Adaptive Surface Triangulation . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Chung:2000:SRT">1--9</a>
George Wolberg and
H. M. Sueyllam and
M. A. Ismail and
K. M. Ahmed <a href="http://www.acm.org/jgt/papers/AlonsoHolzschuch00/">One-Dimensional Resampling with Inverse</a>
and Forward Mapping Functions . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Wolberg:2000:ODR">11--33</a>
Luiz Velho <a href="http://www.acm.org/jgt/papers/AlonsoHolzschuch00/">Using Semi-Regular $4$-$8$ Meshes for</a>
Subdivision Surfaces . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Velho:2000:USR">35--47</a>
</pre>
<hr>
<h1>
<a name="5(4):2000">
Journal of Graphics Tools: JGT<br>
Volume 5, Number 4, 2000
</a>
</h1>
<pre> Francesc Castro and
László Neumann and
Mateu Sbert <a href="http://www.acm.org/jgt/papers/AlonsoHolzschuch00/">Extended Ambient Term</a> . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Castro:2000:EAT">1--7</a>
C. Rocchini and
P. Cignoni <a href="http://www.acm.org/jgt/papers/AlonsoHolzschuch00/">Generating Random Points in a</a>
Tetrahedron . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Rocchini:2000:GRP">9--12</a>
Mark A. Livingston and
Arthur Gregory and
W. Bruce Culbertson <a href="http://www.acm.org/jgt/papers/AlonsoHolzschuch00/">Camera Control in Three Dimensions with</a>
a Two-Dimensional Input Device . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Livingston:2000:CCT">13--24</a>
J. C. Torres and
F. A. Conde <a href="http://www.acm.org/jgt/papers/AlonsoHolzschuch00/">A Fast Algorithm to Decide the Inclusion</a>
of a Point in the Convex Hull of a
Two-Dimensional Point Set . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Torres:2000:FAD">25--32</a>
Pantelis Elinas and
Wolfgang Stuerzlinger <a href="http://www.acm.org/jgt/papers/ElinasStuerzlinger00.html">Real-time rendering of $3$D clouds</a> . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Elinas:2000:RTR">33--45</a>
<br>
</pre>
<hr>
<h1>
<a name="6(1):2001">
Journal of Graphics Tools: JGT<br>
Volume 6, Number 1, 2001
</a>
</h1>
<pre> Jonathan Dinerstein and
Larre Egbert and
Nick Flann <a href="http://www.acm.org/jgt/papers/DinersteinEgbertFlann01.html">Linear grouping---a method for</a>
optimizing $3$D vertex transformation
and clipping . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Dinerstein:2001:LGM">1--6</a>
Marcelo Kallmann and
Daniel Thalmann <a href="http://www.acm.org/jgt/papers/KallmannThalmann01.html">Star-vertices: A compact representation</a>
for planar meshes with adjacency
information . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Kallmann:2001:SVC">7--18</a>
Eric Haines <a href="http://www.acm.org/jgt/papers/Haines01.html">Soft planar shadows using plateaus</a> . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Haines:2001:SPS">19--27</a>
Tomas Akenine-Möller <a href="http://www.acm.org/jgt/papers/AkenineMoller01.html">Fast $3$D triangle-box overlap testing</a> <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Akenine-Moller:2001:FTB">29--33</a>
Ahmed Nasri and
Gerald Farin <a href="http://www.acm.org/jgt/papers/">A subdivision algorithm for generating</a>
rational curves . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Nasri:2001:SAG">35--47</a>
</pre>
<hr>
<h1>
<a name="6(2):2001">
Journal of Graphics Tools: JGT<br>
Volume 6, Number 2, 2001
</a>
</h1>
<pre> Jarno van der Linden and
Richard Lobb <a href="http://www.acm.org/jgt/papers/vanDerLindenLobb01.html">MPEG-Encoded light fields</a> . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#vanderLinden:2001:MEL">1--15</a>
Ramón Mollá and
Roberto Vivó <a href="http://www.acm.org/jgt/papers/MollaVivo01.html">The Stair algorithm</a> . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Molla:2001:SA">17--25</a>
Jane Wilhelms and
Allen Van Gelder <a href="http://www.acm.org/jgt/papers/WilhelmsVanGelder01.html">Fast and easy reach-cone joint limits</a> <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Wilhelms:2001:FER">27--41</a>
Jos Stam <a href="http://www.acm.org/jgt/papers/Stam01.html">A simple fluid solver based on the FFT</a> <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Stam:2001:SFS">43--52</a>
</pre>
<hr>
<h1>
<a name="6(3):2001">
Journal of Graphics Tools: JGT<br>
Volume 6, Number 3, 2001
</a>
</h1>
<pre> Radomír Mech <a href="http://www.acm.org/jgt/papers/Mech01/">Hardware-accelerated real-time rendering</a>
of gaseous phenomena . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Mech:2001:HAR">1--16</a>
Xiaogang Jin and
Chiew-Lan Tai and
Jieqing Feng and
Qunsheng Peng <a href="http://www.acm.org/jgt/papers/JinEtAl01/">Convolution surfaces for line skeletons</a>
with polynomial weight distributions . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Jin:2001:CSL">17--28</a>
Nelson Max <a href="http://www.acm.org/jgt/papers/Max01/">Consistent subdivision of convex</a>
polyhedra into tetrahedra . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Max:2001:CSC">29--36</a>
Yair Wiseman and
Erick Fredj <a href="http://www.acm.org/jgt/papers/WisemanFredj01/">Contour extraction of compressed JPEG</a>
images . . . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Wiseman:2001:CEC">37--43</a>
Clark R. Andersen and
William L. Buford, Jr. <a href="http://www.acm.org/jgt/papers/AndersenBuford01/">The three-dimensional parametric ellipse</a> <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Andersen:2001:TDP">45--48</a>
</pre>
<hr>
<h1>
<a name="6(4):2002">
Journal of Graphics Tools: JGT<br>
Volume 6, Number 4, 2002
</a>
</h1>
<pre> Kasper Hòy Nielsen and
Niels Jòrgen Christensen <a href="http://www.acm.org/jgt/papers/NielsenChristensen01/">Fast Texture-Based Form Factor</a>
Calculations for Radiosity Using
Graphics Hardware . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Nielsen:2002:FTB">1--12</a>
Koji Nakamaru and
Yoshio Ohno <a href="http://www.acm.org/jgt/papers/NakamaruOhno01/">Enhanced Breadth-First Ray Tracing</a> . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Nakamaru:2002:EBF">13--28</a>
Stephen Vincent and
David Forsey <a href="http://www.acm.org/jgt/papers/VincentForsey01/">Fast and Accurate Parametric Curve</a>
Length Computation . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Vincent:2002:FAP">29--40</a>
Gladimir V. G. Baranoski and
Jon Rokne <a href="http://www.acm.org/jgt/papers/BaranoskiRokne01/">An Efficient and Controllable Blob</a>
Function . . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Baranoski:2002:ECB">41--54</a>
<br>
</pre>
<hr>
<h1>
<a name="7(1):2002">
Journal of Graphics Tools: JGT<br>
Volume 7, Number 1, 2002
</a>
</h1>
<pre> William B. Thomspon and
Peter Shirley and
James A. Ferwerda <a href="http://www.acm.org/jgt/papers/ThompsonShirleyFerwerda02/">A Spatial Post-Processing Algorithm for</a>
Images of Night Scenes . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Thomspon:2002:SPP">1--12</a>
Mark Meyer and
Haeyoung Lee and
Alan Barr and
Mathieu Desbrun <a href="http://www.acm.org/jgt/papers/MeyerEtAl02/">Generalized Barycentric Coordinates on</a>
Irregular Polygons . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Meyer:2002:GBC">13--22</a>
David Vranek <a href="http://www.acm.org/jgt/papers/Vranek02/">Fast and Accurate Circle-Circle and</a>
Circle-Line $3$D Distance Computation <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Vranek:2002:FAC">23--32</a>
Mel Slater <a href="http://www.acm.org/jgt/papers/Slater02/">Constant Time Queries on Uniformly</a>
Distributed Points on a Hemisphere . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Slater:2002:CTQ">33--44</a>
Erik Reinhard <a href="http://www.acm.org/jgt/papers/Reinhard02/">Parameter Estimation for Photographic</a>
Tone Reproduction . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Reinhard:2002:PEP">45--52</a>
</pre>
<hr>
<h1>
<a name="7(2):2002">
Journal of Graphics Tools: JGT<br>
Volume 7, Number 2, 2002
</a>
</h1>
<pre> Charles M. Schmidt and
Brian Budge <a href="http://www.acm.org/jgt/papers/SchmidtBudge02/">Simple Nested Dielectrics in Ray Traced</a>
Images . . . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Schmidt:2002:SND">1--8</a>
Daniel Sunday <a href="http://www.acm.org/jgt/papers/Sunday02/">Fast Polygon Area and Newell Normal</a>
Computation . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Sunday:2002:FPA">9--13 (??)</a>
Fabio Ganovelli and
Frederico Ponchio and
Claudio Rocchini <a href="http://www.acm.org/jgt/papers/GanovelliPonchioRocchini02/">Fast Tetrahedron-Tetrahedron Overlap</a>
Algorithm . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Ganovelli:2002:FTT">17--26</a>
Frédéric Cazals <a href="http://www.acm.org/jgt/papers/Cazals02/">Non-Intrusive Debugging and Incremental</a>
Visualization with the Geometric
Stethoscope . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Cazals:2002:NID">27--40</a>
William Martin and
Peter Shirley and
Steven Parker and
William Thompson and
Erik Reinhard <a href="http://www.acm.org/jgt/papers/MartinEtAl02/">Temporally coherent interactive ray</a>
tracing . . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Martin:2002:TCI">41--48</a>
</pre>
<hr>
<h1>
<a name="7(3):2002">
Journal of Graphics Tools: JGT<br>
Volume 7, Number 3, 2002
</a>
</h1>
<pre> Sarah F. Frisken and
Ronald N. Perry <a href="http://www.acm.org/jgt/papers/FriskenPerry02/">Simple and Efficient Traversal Methods</a>
for Quadtrees and Octrees . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Frisken:2002:SET">1--11</a>
Michael Kallay <a href="http://www.acm.org/jgt/papers/Kallay02/">Computing Tight Bounds for a Bézier Curve</a> <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Kallay:2002:CTB">13--17</a>
Anthony Steed <a href="http://www.acm.org/jgt/papers/Steed02/">Pseudo-Shadowed Cursors for $3$D</a>
Interaction . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Steed:2002:PSC">19--25</a>
Denis Haumont and
Nadine Warzée <a href="http://www.acm.org/jgt/papers/HaumontWarzee02/">Complete Polygonal Scene Voxelization</a> <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Haumont:2002:CPS">27--41</a>
Stephen Vincent <a href="http://www.acm.org/jgt/papers/Vincent02/">Fast Detection of the Geometric Form of</a>
Two-Dimensional Cubic Bézier Curves . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Vincent:2002:FDG">43--51</a>
</pre>
<hr>
<h1>
<a name="7(4):2002">
Journal of Graphics Tools: JGT<br>
Volume 7, Number 4, 2002
</a>
</h1>
<pre> Michael Ashikhmin and
Abhijeet Ghosh <a href="http://www.acm.org/jgt/papers/AshikhminGhosh02/">Simple blurry reflections with</a>
environment maps . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Ashikhmin:2002:SBR">3--8</a>
Stefan Brabec and
Thomas Annen and
Hans-Peter Seidel <a href="http://www.acm.org/jgt/papers/BrabecAnnenSeidel02/">Practical shadow mapping</a> . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Brabec:2002:PSM">9--18</a>
Tom Forsyth <a href="http://www.acm.org/jgt/papers/Forsyth02/">Self-Shadowing Bumpmap using $3$D</a>
Texture Hardware . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Forsyth:2002:SSB">19--26</a>
Jan Kautz and
Hans-Peter Seidel <a href="http://www.acm.org/jgt/papers/KautzSeidel02/">Real-Time Halftoning</a> . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Kautz:2002:RTH">27--31</a>
Dongo Kim and
James K. Hahn <a href="http://www.acm.org/jgt/papers/KimHahn02/">Hardware-Assisted Rendering of</a>
Cylindrical Panoramas . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Kim:2002:HAR">33--42</a>
Young J. Kim and
Kenneth Hoff and
Ming C. Lin and
Dinesh Manocha <a href="http://www.acm.org/jgt/papers/KimEtAl02/">Closest Point Query among the Union of</a>
Convex Polytopes using Rasterization
Hardware . . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Kim:2002:CPQ">43--51</a>
Sergey Parilov and
Wolfgang Stuerzlinger <a href="http://www.acm.org/jgt/papers/ParilovStuerzlinger02/">Per-Pixel Divisions</a> . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Parilov:2002:PPD">53--59</a>
Mauro Steigleder <a href="http://www.acm.org/jgt/papers/Steigleder02/">Factorization of the Ashikhmin BRDF for</a>
Real-Time Rendering . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Steigleder:2002:FAB">61--68</a>
Yigang Wang and
Bernd Fröhlich and
Martin Göbel <a href="http://www.acm.org/jgt/papers/WangFrohlichGobel02/">Fast Normal Map Generation for</a>
Simplified Meshes . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Wang:2002:FNM">69--82</a>
Daniel Weiskopf and
Thomas Ertl <a href="http://www.acm.org/jgt/papers/WeiskopfErtl02/">Real-Time Depth-Cueing beyond Fogging</a> <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Weiskopf:2002:RTD">83--90</a>
Ruigang Yang and
Greg Welch <a href="http://www.acm.org/jgt/papers/YangWelch02/">Fast Image Segmentation and Smoothing</a>
Using Commodity Graphics Hardware . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Yang:2002:FIS">91--100</a>
<br>
</pre>
<hr>
<h1>
<a name="8(1):2003">
Journal of Graphics Tools: JGT<br>
Volume 8, Number 1, 2003
</a>
</h1>
<pre> Kok-Lim Low and
Adrian Ilie <a href="http://www.acm.org/jgt/papers/LowIlie03/">Computing a View Frustum to Maximize an</a>
Object's Image Area . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Low:2003:CVF">3--15</a>
Hao Shen and
Pheng Ann Heng and
Zesheng Tang <a href="http://www.acm.org/jgt/papers/ShenHengTang03/">A Fast Triangle-Triangle Overlap Test</a>
Using Signed Distances . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Shen:2003:FTT">16--24 (??)</a>
Philippe Guigue and
Olivier Devillers <a href="http://www.acm.org/jgt/papers/GuigueDevillers03/">Fast and Robust Triangle-Triangle</a>
Overlap Test using Orientation
Predicates . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Guigue:2003:FRT">25--32 (??)</a>
Robert J. MacG. Dawson <a href="http://www.acm.org/jgt/papers/Dawson03/">Crooked Wallpaper</a> . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Dawson:2003:CW">33--46</a>
</pre>
<hr>
<h1>
<a name="8(2):2003">
Journal of Graphics Tools: JGT<br>
Volume 8, Number 2, 2003
</a>
</h1>
<pre> Thomas Lewiner and
Hélio Lopes and
Antônio Wilson Vieira and
Geovan Tavares <a href="http://www.acm.org/jgt/papers/LewinerEtAl03/">Efficient Implementation of Marching</a>
Cubes' Cases with Topological Guarantees <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Lewiner:2003:EIM">1--15</a>
Greg Ward <a href="http://www.acm.org/jgt/papers/Ward03/">Fast, Robust Image Registration for</a>
Compositing High Dynamic Range
Photographcs from Hand-Held Exposures <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Ward:2003:FRI">17--30</a>
Michael Kallay and
Jason Lawrence <a href="http://www.acm.org/jgt/papers/KallayLawrence03/">Improving the Two-Pass Resampling</a>
Algorithm . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Kallay:2003:ITP">31--40</a>
Ye Jianhui <a href="http://www.acm.org/jgt/papers/Jianhui03/">Region-Based Simplification of Laser</a>
Scanned Meshes . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Jianhui:2003:RBS">41--50</a>
</pre>
<hr>
<h1>
<a name="8(3):2003">
Journal of Graphics Tools: JGT<br>
Volume 8, Number 3, 2003
</a>
</h1>
<pre> Daqing Xue and
Roger Crawfis <a href="http://www.acm.org/jgt/papers/XueCrawfis03/">Efficient Splatting Using Modern</a>
Graphics Hardware . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Xue:2003:ESU">1--21</a>
Jukka Arvo and
Timo Aila <a href="http://www.acm.org/jgt/papers/ArvoAila03/">Optimized Shadow Mapping Using the</a>
Stencil Buffer . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Arvo:2003:OSM">23--32</a>
Neeharika Adabala and
Nadia Magnenat-Thalmann <a href="http://www.acm.org/jgt/papers/AdabalaMagnenatThalmann03/">A Procedural Thread Texture Model</a> . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Adabala:2003:PTT">33--40</a>
Mauro Steigleder and
Michael McCool <a href="http://www.acm.org/jgt/papers/SteiglederMcCool03/">Generalized Stratified Sampling Using</a>
the Hilbert Curve . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Steigleder:2003:GSS">41--47</a>
</pre>
<hr>
<h1>
<a name="8(4):2003">
Journal of Graphics Tools: JGT<br>
Volume 8, Number 4, 2003
</a>
</h1>
<pre> Radomír Mech <a href="http://www.acm.org/jgt/papers/Mech03/">Real-Time Image-Based Rendering Using</a>
Surface Proxies and Texture Packing . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Mech:2003:RTI">1--19</a>
Tomas Akenine-Möller and
Ulf Assarsson <a href="http://www.acm.org/jgt/papers/AkenineMollerAssarsson03/">On The Degree of Vertices in a Shadow</a>
Volume Silhouette . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Akenine-Moller:2003:DVS">21--24</a>
Arne Dür and
Sylvia Leimgruber <a href="http://www.acm.org/jgt/papers/DuerLeimgruber03/">A Practical List-Priority Algorithm for</a>
3D Polygons . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Dur:2003:PLP">25--36</a>
Nikos Platis and
Theoharis Theoharis <a href="http://www.acm.org/jgt/papers/PlatisTheoharis03/">Fast Ray-Tetrahedron Intersection Using</a>
Plücker Coordinates . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Platis:2003:FRT">37--48</a>
<br>
</pre>
<hr>
<h1>
<a name="9(1):2004">
Journal of Graphics Tools: JGT<br>
Volume 9, Number 1, 2004
</a>
</h1>
<pre> Morgan McGuire <a href="http://www.acm.org/jgt/papers/McGuire04/">Observations on Silhouette Sizes</a> . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#McGuire:2004:OSS">1--12</a>
Chung-Ming Wang and
Nen-Chin Hwang <a href="http://www.acm.org/jgt/papers/WangHwang04/">A Stratified Sampling Technique for an</a>
Ellipse . . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Wang:2004:SST">13--22</a>
Alexandru Telea <a href="http://www.acm.org/jgt/papers/Telea04/">An Image Inpainting Technique Based on</a>
the Fast Marching Method . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Telea:2004:IIT">23--34</a>
Jeffrey Mahovsky and
Brian Wyvill <a href="http://www.acm.org/jgt/papers/MahovskyWyvill04/">Fast Ray-Axis Aligned Bounding Box</a>
Overlap Tests with Plücker Coordinates <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Mahovsky:2004:FRA">35--46</a>
</pre>
<hr>
<h1>
<a name="9(2):2004">
Journal of Graphics Tools: JGT<br>
Volume 9, Number 2, 2004
</a>
</h1>
<pre> Harald Schmidl and
Nolan Walker and
Ming Lin <a href="http://www.acm.org/jgt/papers/SchmidlWalkerLin04/">CAB: Fast Update of OBB Trees for</a>
Collision Detection Between Articulated
Bodies . . . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Schmidl:2004:CFU">1--9</a>
Aurélien Barbier and
Eric Galin <a href="http://www.acm.org/jgt/papers/BarbierGalin04/">Fast Distance Computation Between a</a>
Point and Cylinders, Cones, Line-Swept
Spheres and Cone-Spheres . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Barbier:2004:FDC">11--19</a>
Luiz Velho <a href="http://www.acm.org/jgt/papers/Velho04/">A Dynamic Adaptive Mesh Library based on</a>
Stellar Operators . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Velho:2004:DAM">21--47</a>
</pre>
<hr>
<h1>
<a name="9(3):2004">
Journal of Graphics Tools: JGT<br>
Volume 9, Number 3, 2004
</a>
</h1>
<pre> Aravind Krishnaswamy and
Gladimir V. G. Baranoski and
Jon G. Rokne <a href="http://www.acm.org/jgt/papers/BaranoskiEtAl04/">Improving the Reliability/Cost Ratio of</a>
Goniophotometric Comparisons . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Krishnaswamy:2004:IRC">1--20</a>
Niniane Wang <a href="http://www.acm.org/jgt/papers/Wang04/">Realistic and Fast Cloud Rendering</a> . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Wang:2004:RFC">21--40</a>
Shaun D. Ramsey and
Kristin Potter and
Charles Hansen <a href="http://www.acm.org/jgt/papers/RamseyPotterHansen04/">Ray Bilinear Patch Intersections</a> . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Ramsey:2004:RBP">41--47</a>
</pre>
<hr>
<h1>
<a name="9(4):2004">
Journal of Graphics Tools: JGT<br>
Volume 9, Number 4, 2004
</a>
</h1>
<pre> Ian F. Stewart and
André R. Foisy <a href="http://jgt.akpeters.com/papers/StewartFoisy04/">Arbitrary-Degree Subdivision with</a>
Creases and Attributes . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Stewart:2004:ADS">3--17</a>
Greg Brentin and
Greg Heflin <a href="http://jgt.akpeters.com/papers/BrentinHeflin04/">Maya\TM Assets: A Shot Content</a>
Management System . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Brentin:2004:MAS">19--31</a>
Hector Yee <a href="http://jgt.akpeters.com/papers/Yee04/">A Perceptual Metric for Production</a>
Testing . . . . . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Yee:2004:PMP">33--40</a>
Dan Piponi <a href="http://jgt.akpeters.com/papers/Piponi04/">Automatic Differentiation, C++</a>
Templates, and Photogrammetry . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Piponi:2004:ADC">41--55</a>
Ben Andersen and
Kevin Noone <a href="http://jgt.akpeters.com/papers/AndersenNoone04/">Controlled Texture Pushing and Crossing</a>
Seams in UV Space Using Maya and
Photorealistic Renderman . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Andersen:2004:CTP">57--67</a>
<br>
</pre>
<hr>
<h1>
<a name="10(1):2005">
Journal of Graphics Tools: JGT<br>
Volume 10, Number 1, 2005
</a>
</h1>
<pre> Alexander Repenning <a href="http://jgt.akpeters.com/papers/Repenning05/">Inflatable Icons: Diffusion-based</a>
Interactive Extrusion of $2$D Images
into $3$D Models . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Repenning:2005:IID">1--15</a>
Zhouchen Lin and
Hai-Tao Chen and
Heung-Yeung Shum and
Jian Wang <a href="http://jgt.akpeters.com/papers/LinEtAl05/">Prefiltering Two-Dimensional Polygons</a>
without Clipping . . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Lin:2005:PTD">17--26</a>
Zhouchen Lin and
Hai-Tao Chen and
Heung-Yeung Shum and
Jian Wang <a href="http://jgt.akpeters.com/papers/LinEtAl05b/">Optimal Polynomial Filters</a> . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Lin:2005:OPF">27--38</a>
Michael Stark and
Peter Shirley and
Michael Ashikhmin <a href="http://jgt.akpeters.com/papers/StarkEtAl05/">Generation of Stratified Samples for</a>
B-Spline Pixel Filtering . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Stark:2005:GSS">39--48</a>
Amy Williams and
Steve Barrus and
R. Keith Morley and
Peter Shirley <a href="http://jgt.akpeters.com/papers/WilliamsEtAl05/">An Efficient and Robust Ray-Box</a>
Intersection Algorithm . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Williams:2005:ERR">49--54</a>
Christopher Bethune and
A. James Stewart <a href="http://jgt.akpeters.com/papers/BethuneStewart05/">Adaptive Slice Geometry for</a>
Hardware-Assisted Volume Rendering . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Bethune:2005:ASG">55--70</a>
</pre>
<hr>
<h1>
<a name="10(2):2005">
Journal of Graphics Tools: JGT<br>
Volume 10, Number 2, 2005
</a>
</h1>
<pre> J. Andreas Bærentzen <a href="http://jgt.akpeters.com/papers/Baerentzen05/">Hardware-Accelerated Point Generation</a>
and Rendering of Point-Based Impostors <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Baerentzen:2005:HAP">1--12</a>
Marta Löfsted and
Tomas Akenine-Möller <a href="http://jgt.akpeters.com/papers/LofstedtAkenineMoller05/">An Evaluation Framework for</a>
Ray--Triangle Intersection Algorithms <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Lofsted:2005:EFR">13--26</a>
Elisabeth Anna Malsch and
John Jeffy Lin and
Gautam Dasgupta <a href="http://jgt.akpeters.com/papers/MalschEtAl05/">Smooth Two-Dimensional Interpolations: A</a>
Recipe for All Polygons . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Malsch:2005:STD">27--39</a>
Patrick Reuter and
Johannes Behr and
Marc Alexa <a href="http://jgt.akpeters.com/papers/ReuterEtAl05/">An Improved Adjacency Data Structure for</a>
Fast Triangle Stripping . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Reuter:2005:IAD">41--50</a>
Sean Barrett <a href="http://jgt.akpeters.com/papers/Barrett05/">Efficient Polygon Edge Enumeration</a> . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Barrett:2005:EPE">51--53</a>
Mangesh Nijasure and
Sumanta N. Pattanaik and
Vineet Goel <a href="http://jgt.akpeters.com/papers/NijasureEtAl05/">Real-Time Global Illumination on GPUs</a> <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Nijasure:2005:RTG">55--71</a>
</pre>
<hr>
<h1>
<a name="10(3):2005">
Journal of Graphics Tools: JGT<br>
Volume 10, Number 3, 2005
</a>
</h1>
<pre> Tomas Akenine-Möller and
Timo Aila <a href="http://jgt.akpeters.com/papers/AkenineMollerAila05/">Conservative and Tiled Rasterization</a>
Using a Modified Triangle Set-Up . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Akenine-Moller:2005:CTR">1--8</a>
Wolfgang Heidrich <a href="http://jgt.akpeters.com/papers/Heidrich05/">Computing the Barycentric Coordinates of</a>
a Projected Point . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Heidrich:2005:CBC">9--12</a>
Nick Chirkov <a href="http://jgt.akpeters.com/papers/Chirkov05/">Fast $3$D Line Segment--Triangle</a>
Intersection Test . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Chirkov:2005:FLS">13--18</a>
Przemyslaw Rokita <a href="http://jgt.akpeters.com/papers/Rokita05/">Depth-Based Selective Antialiasing</a> . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Rokita:2005:DBS">19--26</a>
R. Segura and
F. R. Feito and
J. Ruiz de Miras and
J. C. Torres and
C. Ogáyar <a href="http://jgt.akpeters.com/papers/SeguraEtAl05/">An Efficient Point Classification</a>
Algorithm for Triangle Meshes . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Segura:2005:EPC">27--35</a>
Samuel R. Buss and
Jin-Su Kim <a href="http://jgt.akpeters.com/papers/BussKim05/">Selectively Damped Least Squares for</a>
Inverse Kinematics . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Buss:2005:SDL">37--49</a>
Karan Singh and
Cindy Grimm <a href="http://jgt.akpeters.com/papers/SinghGrimm05/">Implementing the IBar Camera Widget</a> . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Singh:2005:IIC">51--64</a>
Michael Toksvig <a href="http://jgt.akpeters.com/papers/Toksvig05/">Mipmapping Normal Maps</a> . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Toksvig:2005:MNM">65--71</a>
</pre>
<hr>
<h1>
<a name="10(4):2005">
Journal of Graphics Tools: JGT<br>
Volume 10, Number 4, 2005
</a>
</h1>
<pre> Pawel Wrotek and
Alexander Rice and
Morgan McGuire <a href="http://jgt.akpeters.com/papers/WrotekEtAl05/">Real-Time Collision Deformations using</a>
Graphics Hardware . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Wrotek:2005:RTC">1--22</a>
Ares Lagae and
Philip Dutré <a href="http://jgt.akpeters.com/papers/LagaeDutre05/">An Efficient Ray-Quadrilateral</a>
Intersection Test . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Lagae:2005:ERQ">23--32</a>
John Dingliana and
Carol O'Sullivan <a href="http://jgt.akpeters.com/papers/DinglianaOSullivan05/">A Voxel-Based Approach to Approximate</a>
Collision Handling . . . . . . . . . . . <a href="http://www.math.utah.edu/pub/tex/bib/jgraphtools.html#Dingliana:2005:VBA">33--48</a>
Mayur Patel and