David Figatner

Results 212 comments of David Figatner

screenWidth/screenHeight is in pixel size, not world size. the camera thinks in world size. look at the fit commands, or the worldScreenWidth. play with zoom as well. the camera can...

Try a higher resolution image or clamp it to a higher level zoom. As you zoom into a bitmap, it will get pixelated.

There's not a great way to do this. I have had luck with this one: https://stackoverflow.com/a/62415754

if you post sample code, I can take a look. I don't know of any maximum/minimums if you're not clamping (outside of javascript's large number support).

Once we implement this, we should add this functionality to the formula inline editor, so you can insert multiple cells using the cmd/ctrl key.

FYI: This will require a major rework of all the quadratic-core functions so they accept a list of SheetRects instead of a single one. Sigh.

ShortestAngle finds the best angle to move from your start angle to your end angle. In effect it gives you a better end angle. For example, if you have a...

Yes, definitely possible. Need to copy the bezierTo code from pixi into the library and use the same logic as the rest of the statements. Happy to accept a PR.

The fill color of the dashed lines or shape?

It's not a perfect implementation. What I usually do is draw the shape two times: first for the fill, and second with the dashed line.