Birk Tjelmeland
Birk Tjelmeland
This PR introduces a `cat!` macro for concatenating multiple matrices. The `cat!` macro can be used like this: ```rust let a = cat![ &matrix![1,2;3,4;], 1; 0, &matrix![5,6;7,8]; ]; let b...
Currently `Event::to_static` and `WindowEvent::to_static` takes self by value. This is inconvenient because static variants of these enums are required to clone them. And so if one needs to clone these...
Currently the encoder lacks built-in support for writing metadata chunks, you can do it manually with `Writer::write_chunk`. However I believe that there should be a nicer high-level way of doing...
I want to use this library in order to import/export csv files to/from a key-value database, I use HashMap to store this data. This works fine for deserializing, however I...
The current version of glutin seems to crash on Raspbian on the Raspberry Pi 3 B+. The error message is `CreationErrors([NoAvailablePixelFormat, OsError("Couldn't find any available vsync extension")])`. The issue can...
I think that the current api of this crate is sort of messy and a overhaul would be nice. I think this crate should be structured for two use cases:...
I am wondering if there are any plans to implement support for writing obj files? I could probably help out if there is any interest.
This PR defines `USE_DTOA_LIBRARY` in order to fix #35. However it does not put this behind any feature flag and so will always compile `libxlsxwirter` with `USE_DTOA_LIBRARY`. If this is...
I was recently hit by this issue: https://github.com/jmcnamara/libxlsxwriter/issues/64. The problem is that `libxlsxwirter` uses `sprintf` by default which formats decimal numbers in a locale-dependent way, resulting in invalid xlsx files...
This PR adds primitives for more complex path drawing. Everything is added inside a `draw` module. The supported operations are currently: - `close` - `moveto` - `lineto` - `cubicto` -...