The short descriptions are somewhat inconsistent, e.g. whether they're described as "in place" or not (and some of them sound wrong, e.g. ~is draw_text drawing text in place?~ fixed in #480)
Some of the information seems like it would be better pushed into the detailed description on the per-function pages, e.g. the exact ellipse-drawing algorithm
When should I use the in-place vs the not in-place algorithm? I can make an educated guess, but it'd be good to know what the implications of either approach are.
[Context: I'm writing a blog post that mentions imageproc, and I'm having to handwave about why I'm using the _mut methods.]
In particular looking at https://docs.rs/imageproc/0.22.0/imageproc/drawing/index.html, a few things jump out at me:
draw_text
drawing text in place?~ fixed in #480)[Context: I'm writing a blog post that mentions imageproc, and I'm having to handwave about why I'm using the
_mut
methods.]