Zyl9393

Results 13 comments of Zyl9393

@dolmen [How about an edutainment video?](https://www.youtube.com/watch?v=LKnqECcg6Gw)

It's good to fix it on that end, but I also believe it should not have been symlinked in the first place.

We really need a fix for this. Today the addon recursively nuked my project directory when trying to launch into a new download of Blender 3.2.1 portable, bringing all files...

I would like everyone to take notice that using syscall will double the call overhead, because syscall always calls `GetLastError()` on Windows, even if you use it to invoke non-WINAPI...

Same problem with `SplineSansMono-Regular.ttf`. ![image](https://user-images.githubusercontent.com/41211819/219972811-25bc73b8-d230-4987-902d-f3f588b610f9.png) Looks like we need to do a deep dive into TTF specification. As far as I know, usually shapes should only cut negative space out...

Did some debugging using the letter `d`. Here it is in its broken form: ![image](https://user-images.githubusercontent.com/41211819/219981458-5a899cc5-dee9-4b0a-b1c0-3f5d4bb123d5.png) Here it is after rendering both contours of the letter separately and awkwardly pasting them...

I tried your solution, and you're correct. My take on `Add1()` was a red herring. I found [this documentation by Microsoft](https://learn.microsoft.com/en-us/typography/opentype/spec/ttch01) which explicitly states: > A point is considered to...

So, I stubbed my toe on this one: https://github.com/go-gl/mathgl/blob/master/mgl64/quat.go#L440 That threshold value is way too large for its first use in the function. It's fine for the other use though.

I just learned this issue might be more severe than previously thought. To quote Ian Lance Taylor: > In Go an invalid pointer must never have a pointer type. Doing...

I had this as well. VsCode ended up crashing shortly after by racing to allocate over 30 gigabytes of RAM and going OOM.