-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Points are always rendered in the center #8701
Copy link
Copy link
Open
Labels
Description
Most appropriate sub-area of p5.js?
- Accessibility
- Color
- Core/Environment/Rendering
- Data
- DOM
- Events
- Image
- IO
- Math
- Typography
- Utilities
- p5.strands
- WebGL
- DevOps, Build process, Unit testing
- Internationalization (i18n)
- Friendly Errors
- Other (specify if possible)
p5.js version
1.11.12
Web browser and version
Chrome 146.0.7680.165
Operating system
Windows
Steps to reproduce this
function setup() {
createCanvas(600, 600, WEBGL);
}
function draw() {
background(0);
camera(0, 0, 200, 0, 0, 0, 0, 1, 0);
stroke(255);
strokeWeight(8);
point(20, 20, 0);
}
the behavior is very different from 1.11.11 and 2.0
Reactions are currently unavailable