xxxxxxxxxx
24
// Click and drag the mouse to view the scene from different angles.
let shape;
// Load the file and create a p5.Geometry object.
function preload() {
shape = loadModel('teapot.obj');
}
function setup() {
createCanvas(100, 100, WEBGL);
describe('A white teapot drawn against a gray background.');
}
function draw() {
background(200);
// Enable orbiting with the mouse.
orbitControl();
// Draw the shape.
model(shape);
}