Fredrick Brennan
Fredrick Brennan
Either way my `XOLR` proposal is not as robust as `MERG` so amending `MERG` would be the better end goal.
Yes I mean that it would be beneficial to describe even the broad strokes of what we need to implement. Do we need boolean operations on Bezier paths? Do we...
https://github.com/libjxl/libjxl/pull/1874/commits/fb8948eda09b50beaaa039dfbb5ee342c14f3f04
Thanks, wasn't sure how
I'm going to work on this as I just noticed the issue in MFEK.  Ironic I work on a font editor and did not notice until today.
Do you mind code like this? ```rust use paste::paste; macro_rules! enum_with_smushing_rules { ( $enum_name:ident, $repr_type:ty, {$( {$variants:expr} ),*}, { $( ($prefix:ident, $op:tt, $multiplier:expr) ),*} ) => { paste! { #[repr($repr_type)]...
yeah this thing is broken as hell :\
MFEKstroke (underlying library: [math.rlib](https://github.com/MFEK/math.rlib)) does this, I _think_, if I understood what you mean. Be aware of MFEK/math.rlib#16, though (although I'm going to fix it soon, I have a patch...
Oh I see! I have in the past cut off the ends of a path and then used FontForge's ability to interpolate curves…InkScape also contains a Path Effect called "Interpolate...
In FontForge I only ever did it when I knew both sides of the path had the same number of points (incl. off-curve) as FontForge very poorly handles non-equal cases....