Is bezierPoint() part of core.PGraphics?

I’m trying to move some of my work over to a library built using netbeans and have come across a problem with
bezierPoint(float, float, float, float, float)
From the processing reference it appears this is part of core.PGraphics and/or? core.PApplet ?

Using statements to import either of those for my java class in netbeans is not helping for bezierPoint() for some reason… Which is very odd because other parts of my code that ref. PGraphics or PApplet are working fine.

Has anyone got any suggestions ?

1 Like

All PApplet “drawing” methods actually access its field g, which is an instance of PGraphics:
Processing.GitHub.io/processing-javadocs/core/processing/core/PApplet.html#g

1 Like

@GoToLoop Thanks! I think that’s fixed it.