Ruud van Asseldonk
Ruud van Asseldonk
> On a related note, I was thinking that it might be worth adding a `fn buffered(buffer_len: usize) -> BufferedSamples` method to the `read::Samples` iterator to offer the ability to...
About flac, metadata support in Claxon hasn’t gotten a lot of love yet. It does not expose the Vorbis comments [because it cannot read them at the moment](https://github.com/ruuda/claxon/blob/fe64c2f/src/metadata.rs#L136-L159). I do...
You are totally right, I should write better documentation. In the mean time, [there is the polygon example](https://github.com/ruuda/pris/blob/ea0d952f23e5e7eb4d9392fbbc14069b329b6e1a/examples/polygon.pris) and [the roundrect example](https://github.com/ruuda/pris/blob/ea0d952f23e5e7eb4d9392fbbc14069b329b6e1a/examples/roundrect.pris).
First of all, thank you for taking the time to try Pris and to file an issue! Being able to select specific glyphs by id is definitely a must-have, and...
Hmm, it looks like the index in `cairo_glyph_t` *is* actually the glyph index. I put together a dirty version of this in the `glyph` branch (commit 5f16a9e), and this works....
Getting the glyph advance turned out not to be so difficult, this is now on the master branch. The height of the bounding box is still wrong (it stops at...
It is possible to manually extend the bounding box by placing an empty frame. This works because currently (0, 0) is always within the bounding box. (I’m still not sure...
`Span` is sufficient to track source code locations, [it can be translated back into line numbers](https://github.com/ruuda/pris/blob/ea0d952f23e5e7eb4d9392fbbc14069b329b6e1a/src/bin/pris.rs#L123-L158), and the lexer already reports errors in that way. The challenge is to add...
That is awesome! I apologise for not keeping this issue up to date, the parser has been replaced since I opened this issue. The lexer is still in [`src/lexer.rs`](https://github.com/ruuda/pris/blob/00f6aeeca678d5dc67a4f1077b0b880cbce6b6b4/src/lexer.rs) (now...
Some work is being done on the [windows](https://github.com/ruuda/pris/tree/windows) branch.