Tutorial for nim pixie graphics?

2022-12-22 Thread geohuz
@pietroppeter, thanks for the information! this is truely awesome!

Tutorial for nim pixie graphics?

2022-12-21 Thread pietroppeter
ggplotnim did get recently a [pixie backend](https://github.com/Vindaar/ginger/pull/28) (ginger is ggplotnim main backend engine) thanks to @zetashift. To activate it, according to changelog, you need to add a backend parameter when calling ggsave:

Tutorial for nim pixie graphics?

2022-12-20 Thread geohuz
I'm wondering if Pixie can be used as the base of ploting/charting library like ggplotnim, someone may come up with a general animation/morping lib based on pixie.

Tutorial for nim pixie graphics?

2022-12-20 Thread treeform
Pixie is just a vector graphics library it does not do clicks or open windows. But we did write boxy and windy which you can use together with pixie to make games and other interactive things: And there is also slappy for

Tutorial for nim pixie graphics?

2022-12-20 Thread pietroppeter
> Can pixie react to clicks on a figure no, not by itself. for that I would use p5nim: examples of implementation of tic tac toe in p5js that could be ported to p5nim: * *

Tutorial for nim pixie graphics?

2022-12-20 Thread alexeypetrushin
Can pixie react to clicks on a figure? Like when you draw image with lots of stars, and when someone clicks on specific star the event handler is triggered?

Tutorial for nim pixie graphics?

2022-12-20 Thread pietroppeter
and as far as example goes, this is the most complex thing I did with pixie (likely not good style, iirc I was mixing the two styles of api available in pixie): reproducing a wordle-like logo (for an Italian version of wordle) with pixie (that

Tutorial for nim pixie graphics?

2022-12-20 Thread pietroppeter
btw, I think readme of (old repo for subset of font functionalities now in pixie) contains still useful stuff for fonts and typography that, last time I checked was not yet ported to pixie or pixiebook. probably it could be useful to port it in one of

Tutorial for nim pixie graphics?

2022-12-19 Thread DougT
I had not seen pixiebook. If you google pixie graphics tutorial Run then I believe there is not a reference to pixiebook. I will study pixiebook and in about a week reply with what additional material I would like to see.

Tutorial for nim pixie graphics?

2022-12-19 Thread UxDnz0
Doing fonts/text so well, and comprehensively deserves much respect man. The pixiebook entry could do with a bit more code though :D (The pixie repo examples are already pretty good here though..)

Tutorial for nim pixie graphics?

2022-12-19 Thread treeform
Have you seen ? What kind of tutorials would you like to see?

Tutorial for nim pixie graphics?

2022-12-19 Thread DougT
I have not found a tutorial. I think we need something more in depth than the simple examples on Github treeform/pixie. References to more detailed examples would also be helpful.