Differences between renderers

Other than textsize what other differences should be expected from renderers and is there a way to adjust this.

void settings(){
  //size(W,H,JAVA2D);
  if(Terrain3d){
  size(W,H,P3D);
  }else{
    size(W,H,FX2D);
    //size(W,H,P2D);
  }
  
};

3D

image

2D

image

1 Like