Amit Patel

Results 37 comments of Amit Patel

Also find some links in this section http://www-cs-students.stanford.edu/~amitp/game-programming/polygon-map-generation/#source

The A* graph nodes should be the important state for making decisions. Normally we just use location for this. But if you want to take turns into account you would...

There are lots of fun things to do with costs once you switch from "cost is distance" to "cost is time" and then "cost is time plus annoyance" or "cost...

@kninnug I tried out Constrainautor and it's really nice. Thank you! [demo page](https://www.redblobgames.com/x/2131-constrainautor/) @brunoimbrizi Nice! Even though your wrapper is open source (MIT license), Triangle itself isn't open source, so...

I always have trouble making `:functions` work for me. Try `M-x pp-macroexpand-expression` and you'll see your `:functions` doesn't seem to show up anywhere. Other people have issues too, and you...

I'm not sure where the text is being built but if you put all the `tspan` elements on a line without `x` and `y` on each one after the first,...

My guess is that there's a mismatch between the window size in "points" and "pixels", and bearlibterminal is using one when it needs to use the other. I don't know...

Thanks @dataf3l! I too tried `mps` but had no luck. I didn't have to install as many packages: ```sh python3 -m venv env source env/bin/activate pip install 'torch>=2.0' pip install...

> But – and again I know there's not GPU Here – I can't say it's anymore faster (M1 Max, 64GB of RAM), still quite slow... Being thick here but,...

I'm having the same trouble. dist/bezier.js doesn't seem to be an ES module; it seems to be IIFE. The top level is `(()=>{…})();`. It seems neither to `export` anything as...