From 4ba0c79055b3c894d31ebe9beaa8712e8d2d9141 Mon Sep 17 00:00:00 2001 From: Mikko Mononen Date: Sun, 6 Oct 2013 01:46:50 +0300 Subject: [PATCH] Added more documentation, removed unused tol, added shapeId - added more documentation to NSVGPath - removed unused 'tol' - added shapeId to paths, used to identify path belonging to same shape - small text change to readme --- .gitignore | 3 +++ README.md | 2 +- src/nanosvg.h | 34 ++++++++++++++++++++-------------- 3 files changed, 24 insertions(+), 15 deletions(-) diff --git a/.gitignore b/.gitignore index c3b0c6a..70f534e 100644 --- a/.gitignore +++ b/.gitignore @@ -21,5 +21,8 @@ test ehthumbs.db Thumbs.db +## Build dir +build/* + ## xcode specific *xcuserdata* diff --git a/README.md b/README.md index 16e305e..e837e88 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Nano SVG ========== -![screenshot of some text rendered witht the sample program](/example/screenshot.png?raw=true) +![screenshot of some splines rendered witht the sample program](/example/screenshot.png?raw=true) NanoSVG is a simple stupid single-header-file SVG parse. The output of the parser is a list of cubic bezier shapes. diff --git a/src/nanosvg.h b/src/nanosvg.h index 8041153..74a4f7f 100644 --- a/src/nanosvg.h +++ b/src/nanosvg.h @@ -48,16 +48,16 @@ extern "C" { struct NSVGPath { - float* pts; - int npts; - unsigned int id; - unsigned int fillColor; - unsigned int strokeColor; - float strokeWidth; - char hasFill; - char hasStroke; - char closed; - struct NSVGPath* next; + float* pts; // Cubic bezier points: x0,y0, [cpx1,cpx1,cpx2,cpy2,x1,y1], ... + int npts; // Total number of bezier points. + unsigned int shapeId; // Sequence number if a SVG shape, used to identify paths belonging to same shape. + unsigned int fillColor; // Fill color + unsigned int strokeColor; // Stroke color + float strokeWidth; // Stroke width (scaled) + char hasFill; // Flag indicating if fill exists. + char hasStroke; // Flag indicating id store exists + char closed; // Flag indicating if shapes should be treated as closed. + struct NSVGPath* next; // Pointer to next path, or NULL if last element. }; // Parses SVG file from a file, returns linked list of paths. @@ -238,10 +238,10 @@ struct NSVGParser float* pts; int npts; int cpts; + unsigned int shapeId; struct NSVGPath* plist; char pathFlag; - char defsFlag; - float tol; + char defsFlag; }; static void nsvg__xformSetIdentity(float* t) @@ -473,6 +473,8 @@ static void nsvg__createPath(struct NSVGParser* p, char closed) if (path->hasStroke) path->strokeColor |= (unsigned int)(attr->strokeOpacity*255) << 24; + path->shapeId = p->shapeId; + path->next = p->plist; p->plist = path; @@ -1603,26 +1605,32 @@ static void nsvg__startElement(void* ud, const char* el, const char** attr) } else if (strcmp(el, "rect") == 0) { nsvg__pushAttr(p); nsvg__parseRect(p, attr); + p->shapeId++; nsvg__popAttr(p); } else if (strcmp(el, "circle") == 0) { nsvg__pushAttr(p); nsvg__parseCircle(p, attr); + p->shapeId++; nsvg__popAttr(p); } else if (strcmp(el, "ellipse") == 0) { nsvg__pushAttr(p); nsvg__parseEllipse(p, attr); + p->shapeId++; nsvg__popAttr(p); } else if (strcmp(el, "line") == 0) { nsvg__pushAttr(p); nsvg__parseLine(p, attr); + p->shapeId++; nsvg__popAttr(p); } else if (strcmp(el, "polyline") == 0) { nsvg__pushAttr(p); nsvg__parsePoly(p, attr, 0); + p->shapeId++; nsvg__popAttr(p); } else if (strcmp(el, "polygon") == 0) { nsvg__pushAttr(p); nsvg__parsePoly(p, attr, 1); + p->shapeId++; nsvg__popAttr(p); } else if (strcmp(el, "defs") == 0) { p->defsFlag = 1; @@ -1657,8 +1665,6 @@ struct NSVGPath* nsvgParse(char* input) return NULL; } - p->tol = 1.0f; - nsvg__parseXML(input, nsvg__startElement, nsvg__endElement, nsvg__content, p); ret = p->plist;