Chroma icon indicating copy to clipboard operation
Chroma copied to clipboard

processing examples renderer

Open kllsamui opened this issue 6 years ago • 6 comments

https://discourse.processing.org/t/problem-installing-a-library-chroma/15469/4

reported by @ paulstgeorge

the library seems to work with

size(500,500,P2D);
//or
size(500,500);

and example tintBoxes

void setup() {

    size(CANVAS_X, CANVAS_Y, "processing.core.PGraphicsRetina2D");

gives error, need to use

void settings() {
    size(CANVAS_X, CANVAS_Y, P2D);
}
void setup(){}

kllsamui avatar Nov 14 '19 10:11 kllsamui

And size() should not use variables https://github.com/processing/processing/wiki/Changes-in-3.0

paulstgeorge avatar Nov 14 '19 11:11 paulstgeorge

And saveFrame() should not be used inside keyReleased() https://github.com/neilpanchal/Chroma/tree/master/examples

paulstgeorge avatar Nov 14 '19 11:11 paulstgeorge

@paulstgeorge -- do you know how to fork and create a pull request with your suggested changes?

jeremydouglass avatar Nov 19 '19 18:11 jeremydouglass

@jeremydouglass I don't know how to fork and create a pull request, but the suggestions are important. The third problem crashes Processing. Can you tell me how to report?

paulstgeorge avatar Nov 19 '19 18:11 paulstgeorge

Fork this repository to your account with the fork button. Make changes to your fork -- either through Editing files with the github web interface, or through cloning to your computer. When you are done, you can start a pull request to send your proposed changes back to this repo.

https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork

For an overview:

https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests

jeremydouglass avatar Dec 19 '19 22:12 jeremydouglass

@jeremydouglass @paulstgeorge @kllsamui I'll take a look, thanks for reporting.

neilpanchal avatar Dec 23 '19 07:12 neilpanchal