Santiago Pelufo
Santiago Pelufo
I've been trying to figure out how watching in gulp works, and my understanding so far is that every time a file that matches the glob changes, you `orchestrator.prototype.start` the...
I did, through raylib-go: ``` package main import rl "github.com/gen2brain/raylib-go/raylib" func main() { rl.InitWindow(800, 600, "raylib [rshapes] example - bezier") defer rl.CloseWindow() rl.SetTargetFPS(60) for !rl.WindowShouldClose() { rl.BeginDrawing() rl.ClearBackground(rl.RayWhite) points :=...
I've fixed the example code. I tested that the previous version of `DrawSplineBezierCubic` didn't work right. The new version works with this example code. The sequence of points passed to...
Regarding the "connections", the gaps left on the points between segments, one way to cover them up would be to have `DrawSplineBezierCubic` draw a circle at the points connecting segments...
I've gone ahead and did that. It is ready to merge if you want.
@raysan5 ?
I had a similar problem with an external VGA 1600x900 samsung monitor. I was able to fix it by forcing the EDID as described in https://wiki.archlinux.org/index.php/Kernel_mode_setting and https://www.kernel.org/doc/Documentation/EDID/HOWTO.txt , using...
Reading the code it looks to me that the problem is that `Execute` calls `GetBoundingBoxXForm` which computes the `depth` and `xForm` correctly from the `width` but only `xForm` is passed...