Skip to content

curveVertex_

villares edited this page May 24, 2020 · 4 revisions

Nome

curveVertex()

Exemplos

beginShape(LINE_STRIP); 
curveVertex(84,  91); 
curveVertex(84,  91); 
curveVertex(68,  19); 
curveVertex(21,  17); 
curveVertex(32, 100); 
curveVertex(32, 100); 
endShape(); 

Descrição

Especifica as coordenadas de vértices para curvas. Esta função só pode ser chamada entre beginShape() e endShape() e pode ser utilizada apenas para desenhar os tipos  POLYGON, LINE_LOOP, e LINE_STRIP. O uso da versão 3D requer a renderização com P3D ou OPENGL (ver a referência ao Ambiente para mais informações).

Sintaxe

curveVertex(x, y) 
curveVertex(x, y, z)

Parâmetros x float ou int: A coordenada-x do vértice

y float ou int: A coordenada-y do vértice

z float ou int: A coordenada-z do vértice

Retorno

Nenhum

Utilização

Application & Web

Relacionado

curve()

beginShape()

endShape()

vertex()

bezierVertex()

Clone this wiki locally