Most appropriate sub-area of p5.js?
p5.js version
1.9
Web browser and version
all
Operating System
all
Steps to reproduce this
Steps:
- Add ortho()
- Nothing is displayed
- Add orbitControl. Still nothing displayed, until one "uses" it (ie. scroll or drag) Then the content is rendered
Snippet:
function setup() {
createCanvas(400, 400, WEBGL);
}
function draw() {
background(220);
orbitControl();
ortho();
sphere(100)
}
Most appropriate sub-area of p5.js?
p5.js version
1.9
Web browser and version
all
Operating System
all
Steps to reproduce this
Steps:
Snippet: