processing/processing
Shape with only two vertices won't draw (P2D and P3D, works with JAVA2D)
Fermée
#5 270 ouverte le 23 sept. 2017
help wantedlowopengl
Métriques du dépôt
- Stars
- (6 431 étoiles)
- Métriques de merge PR
- (Aucune PR mergée en 30 j)
Description
Description
A shape with only two vertices in immediate mode won't render; it appears when adding a third vertex. This issue presents itself only with the hardware renderers.
Steps to Reproduce
void setup(){
size(200, 200, P2D);
noFill();
stroke(0);
beginShape();
vertex(10, 10);
vertex(100, 100);
endShape();
}
Your Environment
Processing version: 3.3.6 Operating System and OS version: macOS 10.12.6