Name

bezierDetail

Examples
# Move the mouse left and right to see the detail change

settings <- function() {
    size(100, 100, P3D)
}

setup <- function() {
    noFill()
}

draw <- function() {
    background(204)
    d = map(mouseX, 0, 100, 1, 20)
    bezierDetail(d)
    bezier(85, 20, 10, 10, 90, 90, 15, 80)
}
Description Sets the resolution at which Beziers display. The default value is 20. This function is only useful when using the P3D renderer; the default P2D renderer does not use this information.
Syntax
bezierDetail(detail)
Parameters
detailint: resolution of the curves
Related curve
curveVertex
curveTightness
Creative Commons License