Frank Staals
Frank Staals
By the way, now that hgeometry-web compiles again we could also further investigate building some sort of interactive viewer that way. Here is a small demo that is in there...
when using GHC miso needs to be compiled with the '+jsaddle' flag
I think 'cabal build miso -f jsaddle' should do. Or otherwise put package miso flags: +jsaddle in your cabal.project.local file. (or maybe we should even put it in the cabal.project...
Ergh, I accidentally clicked the wrong button > That worked, thanks. > > Maybe building it without optimizations would be feasible on the CI servers. Hmm I guess we can...
Hmm good question. I don't really know; I know ipe well because I use often use it for work (nice features being that it supports LaTeX well, and can directly...
That seems like a pretty nice TODO list :). With respect to the 'isCounterClockwiseOrder': - I wonder if we should just 'normalize' the orientation of the vertices. i.e. keep as...
For prosterity let me also add here: I've been working on implementing an O(n log n) time algorithm to compute the convex hull of a set of points in R^3....
> We could simplify the constraint to `Eq r` and `Num r`. Would that be acceptable? I'm having a hard time thinking of polygons with points that aren't numbers and...
> > To support O(1) indexing in polygons with holes we also need to store slightly more information about holes (some cumulative number of vertices on all holes 'up to...
> > There is also a fairly simple O(n log n) time sweepline algorithm that even works in polygons with holes (rotate a half-line around the query point ; maintain...