Skip to content
Advertisement

Why am I getting a NullPointerException for strokeWeight() in Processing.py?

A quick disclaimer: I’m a bit of a newbie, so this issue might be just me not seeing the obvious, but basically when I run

JavaScript

in Processing I get the following error:

JavaScript

Interestingly enough, I am only returned the error when any one of Processing’s built in functions (such as setup(), draw() or mouseClicked) is defined as well, so if I ran:

JavaScript

it would work for some reason.

I’ve tried 10 diffrent threads concerning NullPointerException but I just can’t seem to find what I did wrong. As I’ve prefaced this post, I am a newbie, so its probably some stupid oversight of mine but it would be great if someone helped me out.

Advertisement

Answer

This might be a result of “mixing active and static modes”. Active mode is when you use setup() and/or draw(), and static mode is when you don’t. Basically, if you’re using setup(), you can’t call any functions outside of an indentation (or a variable definition). The standard way to draw a circle on the screen is like this:

JavaScript

draw() is called just like setup() is: it’s automatically called without you explicitly calling it anywhere.

Keep in mind that draw() is a loop, so it will run continuously until noLoop() is called.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement