-
Notifications
You must be signed in to change notification settings - Fork 121
Closed
Labels
Description
Describe the bug
begin_shape('POINTS') does not draw points
To Reproduce
from p5 import *
def draw():
begin_shape('POINTS')
vertex(30, 20)
vertex(85, 20)
vertex(85, 75)
vertex(30, 75)
end_shape()
if __name__ == '__main__':
run()
Expected behavior
For points appear on the screen.
Screenshots
Expected (from Processing Language):
System information:
- p5 release (version number or latest commit): 975f07e
- Python version: 3.8.3
- Operating system: MacOS 10.15.5
jeremydouglass and Andy-Python-Programmer