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))