-
-
Notifications
You must be signed in to change notification settings - Fork 4
strokeJoin_
villares edited this page May 24, 2020
·
4 revisions
smooth();
strokeWeight(10.0);
strokeJoin(MITER);
beginShape(LINE_STRIP);
vertex(35, 20);
vertex(65, 50);
vertex(35, 80);
endShape();
smooth();
strokeWeight(10.0);
strokeJoin(BEVEL);
beginShape(LINE_STRIP);
vertex(35, 20);
vertex(65, 50);
vertex(35, 80);
endShape();
smooth();
strokeWeight(10.0);
strokeJoin(ROUND);
beginShape(LINE_STRIP);
vertex(35, 20);
vertex(65, 50);
vertex(35, 80);
endShape();
Configura o estilo de juntas que conectam segmentos de linha. Estas juntas podem ser em meia-esquadria, chanfradas ou arredondas, e são especificadas respectivamente através do parâmetros MITER, BEVEL, e ROUND. A junta padrão corresponde à meia-esquadria; MITER. Esta função não funciona com os renderizadores P2D, P3D, OR OPENGL (favor ver a referência de size() para mais informações)
strokeJoin(MODO)
Parâmetros MODO Qualquer um entre: MITER, BEVEL, ou ROUND
Nenhum
Web & Applicações
A referência de Processing está sob a licença Creative Commons BY-NC conforme indicado aqui. Esta Wiki-tradução é baseada na tradução e adaptação para o Português do Brasil do professor Luiz Ernesto Merkle