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
2011-05-22Fix #27456: Scalable Vector Graphics (SVG) file importing incorrectlySergey Sharybin
Update current point position when closing path is needed.
2011-05-16update for changes in blender module layout, also add global axis conversion ↵Campbell Barton
to FBX.
2011-04-17SVG importer:Sergey Sharybin
Added missed copyright entry in add-on info block -- svg-arc to blender beziers calculation was made by JM Soler. JM, sorry for this :)
2011-04-10Formatting/standardization for description/locationJonathan Smith
2011-04-04handle exceptions for reading non XML files - cant decode or parse, real ↵Campbell Barton
errors in code will still raise exceptions.
2011-03-21fix for loading some svg's with viewBox like this: viewBox="0,0 360,240"Campbell Barton
eg: XFCE file - /usr/share/xfce4/xkb/flags/tr.svg
2011-03-20Fix #26555: SVG Import (stars wrong scale)Sergey Sharybin
Transformation for non-container objects was applied twice when they were USEd. Get rid of confusing checks for special cases in USE.createGeom and use special flag (instancing) which tells geometry is it "normal" geometry creation or geometry creation initiated by USE node (SYMBOL would be handled differently int this two cases) Quick tests showed none regressions.
2011-03-20Fix #26556: SVG Import fails to parse Inkscape file.Sergey Sharybin
Suppose zero frictional part for case there's space or comma after dot in float value. Inkscape sometimes uses such weird format.
2011-03-20fix for 2 bugs importing SVGCampbell Barton
- transform() only requires a single argument. - support 'INVALID' as a unit suffix is present in some files created by docbook.
2011-03-20fix SVG loading when a float has whitespace prefix.Campbell Barton
file from report [#26555] was raising an error becaues of this. us.svg line 23 <use xlink:href="#star" x=" 0.126"/>
2011-03-19Updated Blender Version to 2.57 and api versionJonathan Smith
2011-02-27replace imports from *, considered bad practice by python devs.Campbell Barton
2011-02-27minor pep8 editsCampbell Barton
2011-02-26SVG importer:Sergey Sharybin
- Handle situation when last point of path segment has got the same position, as first segment point. It used by Illustrator to set up handles of first point and to make segment closed. Not sure about standatr about this, maybe SVG files from other editors should be handled in different way, if it'll be issues -- could be easily fixed. - Use black fill as default (all viewers/editors use this).
2011-02-26SVG importer:Sergey Sharybin
- Fixed rotation matrix - Fixed unneeded deformation caused by interior transformation for used objects (different tags should be handled differently), also, SYMBOL tag could have viewBox - Implemented parsing of colors in rgb(r,g,b) notation
2011-02-25SVG importer:Sergey Sharybin
- Fixed exception caused by spaces after last semicolon in style - Ignore svg namespage in tag names when detecting geometry class
2011-02-24SVG importer:Sergey Sharybin
- Remove unneeded "global" specificaitons - Fixed parsing for paths which contains floating-point numbers in format like 10e-2 - Fixes aspect ration when viewBox is specified
2011-02-23SVG importer new geometries:Sergey Sharybin
- Rect - Circle - Ellipse - Line - Polyline - Polygon Also fixed incorrect constant for cm/mm scaling
2011-02-23SVG format fixes:Sergey Sharybin
- Fixed silly error caused by copy-pasteing code from class (accessing to self from simple function) - Fix for illustrator path format -- it doesn't place spaces before "minus" sign of next number. Maybe it's time to go out from stypid string replacement-splitting to slower but smarter token parser?
2011-02-22pep8 fix for svg importerSergey Sharybin
2011-02-22SVG importer:Sergey Sharybin
- Fixed incorrect usage of 255 color range -- each component should be from segment [0..1] - Added "style" tag parsing
2011-02-21Added link to tracker for SVG importerSergey Sharybin
2011-02-21fix for [#26148] Anomaly in bvh importCampbell Barton
zero length bones had their tail offset in the wrong direction.
2011-02-21Initial commit of SVG importer for Blender 2.5Sergey Sharybin
Only <path> is supported at this moment, other geometries would be added a bit later. Transform attribute, defined, groups and uses should work pretty fine. Work is in progress, so please repoer issues to me, not to tracker :)