errata.graphicsgemsiv

来自「[Game.Programming].Academic - Graphics G」· GRAPHICSGEMSIV 代码 · 共 64 行

GRAPHICSGEMSIV
64
字号
Errata to _Graphics Gems IV_, first edition, edited by Paul Heckbert(Paul.Heckbert@HOSTESS.GRAPHICS.CS.CMU.EDU), Academic Press 1994.  Codeavailable online at http://www.acm.org/tog/GraphicsGemscompiled by Eric Haines (erich@acm.org) from author and reader contributionsversion 1.3date:  11/7/97-----Errors in the text:p. xvi, near the bottom of the page: change	"in directory pub/GraphicsGems/GemsIV"	to	"in directory pub/Graphics/GraphicsGems/GemsIV".p. 129, lines 4,7,10:  changes:	    "if (x < 0)" to "if (x >= 0)",	    "if (y < 0)" to "if (y >= 0)",	    "if (z < 0)" to "if (z >= 0)".p. 138, first equation: change "(-ax,ay)" to "(-ay,ax)" to match the text.p. 349, for (Moore 1992):  change "Rice University, Houston, TX" to "Cornell	University, Ithaca, NY".-----The following are errors in the code listings (corrected in the online code atprinceton.edu:pub/Graphics/GraphicsGems/GemsIV).  Note that many of the codelistings online are different in minor and major ways from the code in thebook.Serious errors (ones your compiler cannot or may not catch):[none so far]-----Syntax errors (ones that are not usually harmful, or are easily caught):[none so far]-----The following are typographical errors in the comments:[none so far]-----A new point in polygon test has been added to ptpoly_haines/ptinpoly.c, avariation on the Crossings test which is about 15% faster for triangles.A potential divide by zero error has been removed fromptpoly_haines/ptinpoly.c; line 1286 had "inv_y = tmax / ydiff;", which isnow deleted.END

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?