# Processing in style with Java 11

**URL:** https://discourse.processing.org/t/processing-in-style-with-java-11/13776
**Category:** Development
**Created:** [September 3, 2019, 4:59pm UTC](https://discourse.processing.org/t/processing-in-style-with-java-11/13776 "2019-09-03T16:59:32Z")
**Posts on this page:** 1
**Showing post:** 28

<div class="post-metadata">

### Author: ![glv](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/glv/32/18785_2.png) [@glv](https://discourse.processing.org/u/glv)
#### Post date: [February 2, 2020, 5:53pm UTC](https://discourse.processing.org/t/processing-in-style-with-java-11/13776/28 "2020-02-02T17:53:15Z")

</div>

Great Work!

I am pleased to see Processing 4 Alpha 1 build available on the Processing website!

With all the different builds out there Processing users should always indicate which version they are using.

I am using Processing 3.5.4 and occasionally testing Processing 4 Alpha 1.

Please advise on how to report bugs.

I came across this:

> [@Check For USB Port Connection](https://discourse.processing.org/t/check-for-usb-port-connection/17406/17):
>
> Try a smaller textSize() that is \<= 100. Code below works to a maximum textSize(100) and displays in both setup() and draw() in Processing 3.5.4. It does not display in setup() with Processing 4 Alpha 1. void setup() { size(1000, 360); background (255, 0, 0); println("got here"); textSize(48); textAlign (CENTER,CENTER); text("Setup", width/2, height/4); //Works! Opmessage ("Plug in the Arduino GPS Scanner"); //Works now! delay (2000); } void draw()…

And pleased to see this is fixed:

> [@PShape.rotateZ() bug?](https://discourse.processing.org/t/pshape-rotatez-bug/17509/3):
>
> Hello, Welcome to the Processing forum. There is a rotateZ() bug in versions 3.5.\* It is fixed in the 4.0 alpha 1 Pre-Release. Workaround: // \*\*\*\*\*\*\*\* BUG ?? \*\*\*\*\*\*\*\* //s.rotateZ(rot); // Bug s.rotate(rot, 0, 0, 1); // Rotates about z-axis translate(location.x,location.y,location.z); shape(s); References: [Cannot run rotateZ() within the PShape class #5770](https://github.com/processing/processing/issues/5770)[https://discourse.processing.org/t/rotate-function-with-4-arguments/5652](https://discourse.processing.org/t/rotate-function-with-4-arguments/5652)[http://processing.githu…](http://processing.github.io/processing-javadocs/core/)

’ 🙂 ’

---

_[View the full topic](https://discourse.processing.org/t/processing-in-style-with-java-11/13776)._
