From cb9610bdd3cd68810a58acaf6f7de02a332c3b91 Mon Sep 17 00:00:00 2001 From: Chris Kapp Date: Wed, 18 Sep 2024 11:55:18 +0100 Subject: [PATCH] int -> float --- src/ezdxf/render/mline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ezdxf/render/mline.py b/src/ezdxf/render/mline.py index eda8d67ef..01f9123d5 100644 --- a/src/ezdxf/render/mline.py +++ b/src/ezdxf/render/mline.py @@ -39,7 +39,7 @@ def filling() -> Hatch: attribs = _dxfattribs(mline) attribs["color"] = style.dxf.fill_color attribs["elevation"] = Vec3(ocs.from_wcs(bottom_border[0])).replace( - x=0, y=0 + x=0.0, y=0.0 ) attribs["extrusion"] = mline.dxf.extrusion hatch = cast("Hatch", factory.new("HATCH", dxfattribs=attribs, doc=doc))