codeanticode / planetarium

A Processing library for dome projection.
http://processing.andrescolubri.net/libraries/planetarium/
Other
49 stars 13 forks source link

save() and saveFrame() don't output correct image #8

Open codeanticode opened 5 years ago

codeanticode commented 5 years ago

These functions are meant so save the contents of the output window, however, because the way rendering works in the planetarium library (by calling the draw() method several times for each frame) they don't generate the expected result.

janebeta7 commented 5 years ago

To save() and saveFrame() you have to put this commands inside void screen() { save(); } null000

tsloan1377 commented 5 years ago

Awesome, thanks so much it works perfectly! Seems so simple, but I never would have got that myself.