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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-06-03Cleanup: remove <pep8 compliant> commentCampbell Barton
This is no longer necessary, see: T98554.
2022-02-11File headers: use SPDX license identifiersCampbell Barton
See T95597
2019-11-22Fix T71774: SVG import error on specific filesSergey Sharybin
Was happening if the software which wrote SVG skipped decimal part.
2019-09-19Fix T70050: Unable to import SVGSergey Sharybin
The issue was caused by parser being confused about ex unit which was attempted to be parsed as an exponent.
2019-09-19SVG: Refactor, move utilities to moduleSergey Sharybin
Also cover with unit test.
2019-09-19SVG: Cleanup, add comments to functionsSergey Sharybin
2019-09-19SVG: Cleanup, less ambiguous names for pre-compiled regexSergey Sharybin
2019-02-07Fix T61275: recognize values with decimal separator in svg importerJacques Lucke
2019-02-01SVG: Properly handle values in exponential notationSergey Sharybin
Some SVG exporters outputs small values in an exponential notation. There is no big reason to reject those files. This change makes it so any notation of the value is accepted. Only do it in the path point parsing, since other areas are already dealing with this correct. Also covered the array parsing covered with a unit test which can be run as a stand-alone application. The parsing code is from Jacques Lucke, thanks! Differential Revision: https://developer.blender.org/D4234