Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/memononen/nanosvg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-09-28Restore example2 test fileMikko Mononen
2020-09-28Fix for #185Mikko Mononen
- prevent infinite loop when gradient ID is left to empty string - prevent infinite loop when gradient references to self - lookup up to 32 references back
2015-11-07Better support for coordinates, fixes local space percentage gradientsMikko Mononen
- fixed zero check in form inverse (was producing NaNs - improved coordinate parsing - handle gradient percentage coords properly
2015-06-12Fixed VC2015 RC warnings.jry2
-possible loss of data while conversions -potentially uninitialized local variables -declaration hides previous local declaration
2015-06-12Handle fill rule properlyMikko Mononen
- added parser for fill rule - added even-odd fill rule support for rasteriser
2014-11-05Restore example filenameMikko Mononen
2014-11-05Issue #20: better handling of miter joinsMikko Mononen
- better handling if stroke miter joins (inner bevel) - correct default miter 4
2014-10-31First stab at line renderingMikko Mononen
- added tessellation and rendering of lines - added parsing for line joins and caps
2014-06-12Added typedefs to structsMikko Mononen
- typedef’d structs - added named parameters
2014-06-12Fixed issue #11Mikko Mononen
- fixed compiler warnings - supper single and double quotes
2014-01-29Added viewBox and unit coversion supportMikko Mononen
- added exact bounds calculation for bezier curves, paths, shapes - added unit coversion for svg length values (use px internally) - added viewBox and preserveAspectRatio handling - removed some test SVGs
2014-01-10Updated documentationMikko Mononen
2014-01-10Added pool alloc for active edges, improved tesselation algo, better ↵Mikko Mononen
guessing of image size - added pool alloc for active edges - improved tesselation algo - better guessing of image size - reverted tiger to default state
2014-01-10Changed struct names, fixed color parser bug and added rasterizerMikko Mononen
- changed struct names from NSVGShape to NSVGshape - fixed silly bug in color parser (plus reversed the r/b) - changed the shape order so that they are in order they are parsed - added super simple svg rasterizer based on stb_truetype rasterizer - added example for the rasterizer
2014-01-02Fixed issue #3Mikko Mononen
- added missing break after 'm'/'M' path command - path command 'm'/'M' is converted to 'l'/'L' so that multiple coordinate pairs behave correctly - fixed rendering of first point on path
2013-10-09Changed the structure of returned SVG data to image, shapes and pathsMikko Mononen
- Needed support to SVG image size, hence added following: - added NSVGImage, which holds image size and list of shapes - added NSVGShape which holds color/store and list of paths
2013-10-05Initial commit.Mikko Mononen