The ConstructiveGeometry.stl function generates the following warning when used:
┌ Warning: use values(kwargs) and keys(kwargs) instead of kwargs.data and kwargs.itr │ caller = _ at ConstructiveGeometry.jl:221 [inlined] └ @ Core ~/.julia/packages/ConstructiveGeometry/on6NG/src/ConstructiveGeometry.jl:221
Minimal reproducible example in the REPL:
julia> using ConstructiveGeometry
julia> c = cube(1)
Cube
julia> ConstructiveGeometry.stl("cube.stl", c)
I believe this is a simple matter of updating the way the kwargs Dict is used; i could not, however, find anything kwargs-related close to line 221, as specified in the message.
The
ConstructiveGeometry.stlfunction generates the following warning when used:┌ Warning: use values(kwargs) and keys(kwargs) instead of kwargs.data and kwargs.itr │ caller = _ at ConstructiveGeometry.jl:221 [inlined] └ @ Core ~/.julia/packages/ConstructiveGeometry/on6NG/src/ConstructiveGeometry.jl:221Minimal reproducible example in the REPL:
I believe this is a simple matter of updating the way the kwargs Dict is used; i could not, however, find anything kwargs-related close to line 221, as specified in the message.