# Is bezierPoint() part of core.PGraphics?

**URL:** https://discourse.processing.org/t/is-bezierpoint-part-of-core-pgraphics/20512
**Category:** Development
**Created:** [May 5, 2020, 3:27pm UTC](https://discourse.processing.org/t/is-bezierpoint-part-of-core-pgraphics/20512 "2020-05-05T15:27:33Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![mala](https://avatars.discourse-cdn.com/v4/letter/m/258eb7/32.png) [@mala](https://discourse.processing.org/u/mala)
#### Post date: [May 5, 2020, 3:27pm UTC](https://discourse.processing.org/t/is-bezierpoint-part-of-core-pgraphics/20512/1 "2020-05-05T15:27:33Z")

</div>

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 ?

---

<div class="post-metadata">

### Author: ![GoToLoop](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/gotoloop/32/86_2.png) [@GoToLoop](https://discourse.processing.org/u/GoToLoop)
#### Post date: [May 5, 2020, 4:06pm UTC](https://discourse.processing.org/t/is-bezierpoint-part-of-core-pgraphics/20512/2 "2020-05-05T16:06:08Z")

</div>

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](http://Processing.GitHub.io/processing-javadocs/core/processing/core/PApplet.html#g)

---

<div class="post-metadata">

### Author: ![mala](https://avatars.discourse-cdn.com/v4/letter/m/258eb7/32.png) [@mala](https://discourse.processing.org/u/mala)
#### Post date: [May 5, 2020, 4:21pm UTC](https://discourse.processing.org/t/is-bezierpoint-part-of-core-pgraphics/20512/3 "2020-05-05T16:21:45Z")

</div>

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