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-02-11File headers: use SPDX license identifiersCampbell Barton
See T95597
2021-12-01Cleanup: quiet character escape warningsCampbell Barton
2021-02-01Fix T84936: DXF Import ErrorGermano Cavalcante
Importing splines from a dxf file can cause an error in the sorting process: ``` TypeError '<' not supported between instances of 'tuple' and 'NoneType' ``` Since instances of type "SPLINE" do not have an extrusion direction, replace the extrusion values with an empty tuple.
2019-06-04Fix (unreported) missing updates after `scene.update()` removal.Bastien Montagne
2019-05-17Update for Depsgraph API changesPhilipp Oeser
Reviewers: sergey Differential Revision: https://developer.blender.org/D4883
2019-03-18DXF Import: fix importing circles incorrectly when unit scale is usedPhilipp Oeser
followup to rBA83f7e2473b7a where scaling of points was fixed (but actually did it on the center as well -- which led to incorrect results if center was not at the origin) Fixes T62585
2019-03-09Fix T60829: DXF Import: Unit Scale Not Applied to CirclesPhilipp Oeser
Maniphest Tasks: T60829 Differential Revision: https://developer.blender.org/D4254
2019-01-26Fix T60879: DXF Import: Can't Import PolylinesPhilipp Oeser
2019-01-25addons: object select_set syntax updateNBurn
2018-12-22DXF-importer initial port to 2.80migius
2018-11-28Use collection and instance terminology in Python APISergey Sharybin
This follows naming convention agreed on in T56648.
2018-10-19Merge branch 'master' into blender2.8Brecht Van Lommel
2018-10-19Spelling fixes in comments and descriptions, patch by luzpaz.Brecht Van Lommel
Differential Revision: https://developer.blender.org/D3746
2018-09-07Merge branch 'master' into blender2.8Campbell Barton
2018-09-07Cleanup: trailing spaceCampbell Barton
2018-09-062.8: update for x_ray and draw/display renaming.Brecht Van Lommel
2018-07-06Update for renaming lamp to light.Brecht Van Lommel
2017-12-11Applying D2933: Adds support for elevation attribute for lwpolylines (code ↵Lukas Treyer
38), fixes a bug when segmenting (lw)polylines, adds support for gradians.
2017-10-23Wrap array access for width property in a if-statement to avoid errors with ↵Lukas Treyer
empty arrays. see T53094.
2017-05-12'Invalid'/ self intersecting BMFaces are apparently not added to the bmesh ↵Lukas Treyer
anymore? in the dxf importer there is a section that tests for selfintersecting quad faces and removes them; but here I now get an error, that the face has been removed.So for now I just wrap it in a try/except clause to make it work across several versions?
2017-03-19Cleanup: identity for None comparisonCampbell Barton
2016-10-11bugfix for T49593: _gen_meshface removes points from a 3DFACE or SOLID if ↵Lukas Treyer
the they share the same location. This was a good a idea but it was not implemented completely. Now it is: faces with overlapping verts get imported as edges if the remaining geometry has only 2 verts. This allows the user to easily select all edges if extraction is needed to make it visible in a rendering. (e.g. select one edge and then choose Select > Select Similar > Amount of connecting edges).
2016-10-07bugfix for T49593: more secure checking for same points in bulgepoly_to_cubicLukas Treyer
2016-08-20related to the latest file in T48806 I found a small bug, which is fixed ↵Lukas Treyer
now. Also dxfgrabber seemed to be incomplete in the last commit.
2016-08-16updating to newest version of dxfgrabber; needed for further updates ↵Lukas Treyer
regarding inf.0 problem.
2016-06-28switched lat / lon for projected coordinates using pyproj as suggested in T48652cnd
2016-03-22two new merge methods: 1. merge by layers and closed no-bulge polylines: ↵Lukas Treyer
merges closed no-bulge polys to a mesh. These kinds of polys actually fit quite well to bmesh's faces. 2 merge by layers (and dxf-type) and blocks: this option inserts blocks using duplifaces. this means if a user has a dxf with a block being inserted MANY times he can use this option to increase import speed. Instead of inserting a new object for each block-insert, only a new face in a mesh is being inserted.
2015-01-27Resolve T43426: DXF import exceptionCampbell Barton
2014-10-21FIX T42252: Arcs are scaled correctly now. The scale factor now also accepts ↵Lukas Treyer
comas, not only points (comas are being replaced by points internally).
2014-08-29BUGFIXES:Lukas Treyer
- "Indication must be 'sperical' or 'planar'" error message if pyproj module is not available. - GeoReference options (lat/lon) was disabled without pyproj
2014-08-19New DXF importer, based in DXFGrabber.Lukas Treyer
This addon replaces the old DXF importer. Written by cnd (Lukas Treyer). It uses dxfgrabber - copyright (C) 2012 by Manfred Moitzi (mozman) (MIT license). Review and some cleanup by mont29 (Bastien Montagne).