q2apro
q2apro
Buttons are not mentioned at https://cindyjs.org/ref/User_Input.html or anywhere else. There is only one example in the gallery: https://cindyjs.org/examples/Buttons1.html Using: ``` geometry: [ {name: "Text0", type: "ToggleButton", pos: [-2.0, -4.0, -0.8],...
Is there a way to define colors in Hex-RGB, e.g. #bb9972 instead of percentage-RGB (0,0,1). Instead of: `drawcircle( (0,0), 5, color->(0,0,1));` I would prefer `drawcircle( (0,0), 5, color->("#00F"));` In web...
When zooming in in EaselJS-drawn geometry (draws on canvas), it always gets blurred:  Try yourself: https://www.matheretter.de/rechner/bruchweit However, with CindyJS the graphics/lines stay cristal clear! 👍 How is that possible?...
I could not find out how to edit text on runtime (csmove): **Setup:** geometry: [ {name: "labela", type: "Text", pos: [0.0, -4.0, -0.8], color: [0.0, 0.0, 1.0], text: "a"}, ],...
As far as I could see, at https://cinderella.de/ there is only the software to be downloaded and then the users have to install it. It would be fantastic if the...
Many projects use github for only bug-reports and enhancement suggestions, and Stackoverflow for how-to-questions. I'd like to know if this is / will be the case with CindyJS too? For...
Using ``` var cdy = CindyJS({ scripts: { init: `resetclock();`, draw: ` A.caption = "XC"; ` }, geometry: [ {name:"A", kind:"P", type:"Free", pos:[1, 1], color:[0,0,0], labeled: true}, {name:"B", kind:"P", type:"Free",...
Using the release version 2.2.155 of Carnac under Windows 10:  As soon as the Save button is hit, the software dies.
Let's assume we have something like: ``` Fruit Apple Pear Orange Veggy Cucumber Tomato Minions ``` I'd use quicksearch on an input field like this (just example code including highlighting):...
I would like to not only filter the elements but also sort them by the highest number of words found within each element. Test here (sorting by word count does...