X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fglyphpoints.cpp;h=4ae01e5d5d8630c0d9dcec1cfd0d6cb0689db0f4;hb=7fde5a077bc9bbce28662fa2e5aa5043f3b4747f;hp=0b0575253914002506c9186279f2b0a2c37a9d1b;hpb=0c01fa32c7e0629ae61992e0419f03724fc18487;p=ttedit diff --git a/src/glyphpoints.cpp b/src/glyphpoints.cpp index 0b05752..4ae01e5 100755 --- a/src/glyphpoints.cpp +++ b/src/glyphpoints.cpp @@ -10,7 +10,7 @@ // JLH = James L. Hammons // // Who When What -// --- ---------- ------------------------------------------------------------ +// --- ---------- ----------------------------------------------------------- // JLH ??/??/200? Created this file // JLH 05/18/2004 Added pure point adding, inserting, better polygon handling // @@ -247,6 +247,7 @@ void GlyphPoints::Clear(void) void GlyphPoints::InsertPoint(uint16_t pt, int xx, int yy, bool oc) { +//wouldn't it be better to treat this case as inserting at the end? if (pt > numPoints) // > because we can insert at end...! throw GP_OUT_OF_RANGE; @@ -267,7 +268,6 @@ void GlyphPoints::InsertPoint(uint16_t pt, int xx, int yy, bool oc) //we're adding to the end of the structure: [DONE, below] int polyInsert = (pt == numPoints ? numPolys - 1 : GetPoly(pt)); for(int i=polyInsert; i= numPoints) +#ifdef DEBUG +{ +WriteLogMsg("Exception: GetXY(uint16_t). pt=%u, numPoints=%u\xD\xA", pt, numPoints); +#endif + throw GP_OUT_OF_RANGE; +#ifdef DEBUG +} +#endif + + return Vector(x[pt], y[pt]); +} + + bool GlyphPoints::GetOnCurve(uint16_t pt) { if (pt >= numPoints)