bezierVertex()

Shape / Vertex

Description

Specifies vertex coordinates for bezier curves inside beginShape()/endShape().

Syntax

void bezierVertex(float cx1, float cy1, float cx2, float cy2, float x, float y)

Parameters

NameTypeDescription
cx1floatx of first control point
cy1floaty of first control point
cx2floatx of second control point
cy2floaty of second control point
xfloatx of anchor point
yfloaty of anchor point

Returns

void

Related

Under the Hood

Implementation in Processing.h / Processing.cpp:

Loading...