Bouhek
26337638fb
Fix lint
2024-02-01 15:29:57 +01:00
Bouhek
de1eb22b16
Fix floating point error in bezier bbox calculation
2024-02-01 13:04:40 +01:00
Andrew Port
6015a97090
Merge pull request #207 from mathandy/fix-issue-205
...
return error if Path.point() cannot be computed
2023-05-20 14:11:07 -04:00
Andrew Port
788b2b43a2
Merge pull request #203 from kasbah/fix-escape-sequences
...
Fix invalid escape sequences in strings
2023-05-20 14:10:19 -04:00
Andrew Port
b282094b53
return error if Path.point() cannot be computed
2023-05-20 13:20:05 -04:00
Kaspar Emanuel
a16a060c27
Fix invalid escape sequences in strings
2023-05-06 19:33:31 +01:00
Sebastian Kuzminsky
e94483510e
path.transform: Arc sweep is reversed by negative scale
...
When transforming an Arc, negative scale reverses the sweep.
2023-05-05 00:38:55 -06:00
Andrew Port
4f5d8f3bf2
fix issue-198; circles parsing to non-closed paths
2023-04-01 15:30:04 -04:00
Andrew Port
31b6f3dd90
Merge branch 'master' into fastfail-intersection
2023-02-03 20:49:49 -05:00
Andrew Port
d9515ea399
remove all wildcard imports
2023-02-03 19:46:23 -05:00
Tatarize
4c6abc5820
Add quick fails to paths
2022-12-04 00:59:15 -08:00
Andrew Port
8df19f1c12
fixed issue 171
2022-07-09 19:49:12 -03:00
Andrew Port
9ac7f62515
cleanup long comment
2022-07-09 19:38:28 -03:00
Andrew Port
d8a6e5e509
delete unused line
2022-07-09 19:30:40 -03:00
Andrew Port
73c887a8a3
rename as name already used by outside function
2022-07-09 19:28:42 -03:00
Andrew Port
8cbe6f0f81
minor docstring change
2022-06-05 22:19:26 -07:00
Andrew Port
e8792f4d2d
add support for os.PathLike arguments
2022-06-05 21:47:37 -07:00
Andrew Port
356d86df78
restore support for PosixPath inputs for Document
2022-06-05 21:00:42 -07:00
FlyingSamson
07f46d41f8
Rename svg_string2paths to svgstr2paths
2022-05-25 19:24:50 +02:00
FlyingSamson
2fc016d48f
Make factory method a classmethod
2022-05-25 17:58:14 +02:00
FlyingSamson
aacd5fa96d
Remove second version of function returning the svg_attributes by default
2022-05-25 17:57:22 +02:00
FlyingSamson
db5200f460
Switch back to previous function parameter names
2022-05-25 17:39:10 +02:00
FlyingSamson
a473ee3f4c
Remove unnecessary seek commands
2022-05-24 18:15:52 +02:00
FlyingSamson
1771fbfb06
Add factory method for creating from string holding svg object
2022-05-22 15:30:48 +02:00
FlyingSamson
50b335f3da
Add convenience functions for converting svgs contained in a string to paths
2022-05-22 14:37:27 +02:00
FlyingSamson
ce43c75cd8
Allow file-like object as input to Documents ctor and svg2paths function
2022-05-22 13:09:13 +02:00
chanicpanic
19df25b99b
Fix Document.add_path for empty groups ( #170 )
2022-02-27 18:48:50 -08:00
Andrew Port
c84c897bf2
aesthetic cleanup
2022-02-03 18:11:55 -08:00
Andrew Port
ac138b8e5d
aesthetic cleanup
2022-02-03 18:10:00 -08:00
Andrew Port
2dc06df20f
rounded rect now parsed properly if only rx or only ry is included
2022-02-03 18:09:09 -08:00
Andrew Port
72fa3dcf17
Merge branch 'master' of github.com:mathandy/svgpathtools
2022-01-25 17:45:24 -08:00
Catherine Holloway
6c655ad220
add support for rounded rectangles ( #161 )
2022-01-25 17:23:04 -08:00
Andrew Port
5037fac574
fix issue with filenames with no directory causing error
2021-11-26 18:34:58 -08:00
Andrew Port
abd99f0846
fix issue with filenames with no directory causing error
2021-11-26 18:31:38 -08:00
Andrew Port
d1421d6286
fix issue with filenames with no directory causing error
2021-11-26 18:23:07 -08:00
Julian Rüth
39d3ba713f
Fix implementation of points() ( #155 )
...
fix incorrect implementation of `points` method
2021-09-26 18:22:09 -07:00
Andrew Port
e993ff95c5
fix issue 156 caused by arc.intersect returning values of t outside [0, 1]
2021-09-23 00:17:19 -07:00
Andrew Port
e0f212a334
make paths and path semgents hashable
2021-09-22 21:19:13 -07:00
Andrew Port
9c2e403036
style change to prevent false codacy critical alert
2021-09-17 23:38:01 -07:00
Andrew Port
3d22a7cf52
remove redundant is_bezier_segment and is_path_segment defs
2021-09-17 22:35:27 -07:00
Vrroom
baba1d18b2
arc transform fixed ( #98 )
...
* arc transform fixed
* Update svgpathtools/path.py
Co-authored-by: Matthijs Kooijman <matthijs@stdin.nl>
* Fixed rotation bug in transformation of arcs
* Made compatible with python2.7
Changed the shorthand @ for np matrix multiplication to matmul
Co-authored-by: vrroom <vrroomc@github.com>
Co-authored-by: Matthijs Kooijman <matthijs@stdin.nl>
2021-06-22 20:28:24 -07:00
Wes Bouaziz
1e5bfb4252
Correcting a few functions not handling Path having empty _segments ( #143 )
...
* Correcting poping from Path objects
Poping from a 1-lengthed Path would yield an error due to not considering that the _segments attribute would be empty after deleting the last element.
* Correcting point function
Unspecified behavior if _segments is empty
* Correcting setter and getter of start and end
2021-05-10 21:12:06 -07:00
Nathan Hurst
a0fc28849c
add support for units and handle mindim=None correctly. ( #149 )
...
* add support for units and handle mindim=None correctly.
* Move baseunit positional argument to the end to avoid disruption.
2021-05-10 21:09:58 -07:00
tatarize
3a1fe8695d
Bug Corrections. Closes #113 , #95 , #94 , and #71 ( #136 )
...
* Closes #113
Previous fix stopped working because numpy is more liberal dividing by zero and returning nan values.
* Closes #71
* Closes #95
* Closes #94
2021-01-16 20:08:58 -08:00
Andrew Port
091394b5e3
fixed problem with path joints becoming discontious after transformation
2020-12-08 22:36:16 -08:00
Andrew Port
30f517e735
fix Arc.center being nan cause of switch to np.sqrt raising different error than math.sqrt
2020-12-08 18:21:24 -08:00
Andrew Port
44e88d54e5
derivative, normal, and unit_tangent now generalize to vectors for path segments (not paths)
2020-12-01 22:49:38 -08:00
Andrew Port
f9febbd85e
minor, 2/360 -> 180
2020-12-01 22:38:41 -08:00
Andrew Port
1c9363d426
arc.point now supports numpy arrays and math and cmath functions now imported from numpy
2020-12-01 22:09:20 -08:00
Andrew Port
ceffdc4a5b
replaced f-strings to keep compatibility with python<3.6
2020-12-01 20:32:26 -08:00