# Differences between renderers

**URL:** https://discourse.processing.org/t/differences-between-renderers/18141
**Category:** Beginners
**Created:** [February 26, 2020, 2:32pm UTC](https://discourse.processing.org/t/differences-between-renderers/18141 "2020-02-26T14:32:22Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![paulgoux](https://avatars.discourse-cdn.com/v4/letter/p/b9bd4f/32.png) [@paulgoux](https://discourse.processing.org/u/paulgoux)
#### Post date: [February 26, 2020, 2:32pm UTC](https://discourse.processing.org/t/differences-between-renderers/18141/1 "2020-02-26T14:32:22Z")

</div>

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

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

```

3D

![image](https://canada1.discourse-cdn.com/flex036/uploads/processingfoundation1/original/2X/4/43b1e0182832ad7b1dccc0d125bb29916e031c52.png)

2D

![image](https://canada1.discourse-cdn.com/flex036/uploads/processingfoundation1/original/2X/d/d2f20b49149363452aff06e1e81f0d7b05daa187.png)
