We are about to switch to a new forum software. Until then we have removed the registration on this forum.
When I load a background as SVG, it does work. Although I set SVG size, and set size in processing, it still does not work.
//PImage b;
PShape m;
PShape b;
void setup () {
size (1080, 720);
frameRate(25);
b= loadShape("background1.svg");
//b = loadImage("background.png");
m = loadShape("moon.svg");
}
void draw(){
//image(b,0,0);
shape(m);
shape(b);
}
https://dropbox.com/s/y38tkkmsha358wy/sketch_151022a.zip?dl=0
Answers
Processing's SVG implementation does not render gradients (sorry).