xxxxxxxxxx
74
const gId = `test`;
function setup() {
createCanvas(windowWidth, windowHeight, WEBGL);
const _cube = CSG.cube();
const _sphere = CSG.sphere({
center: [1, 0, 0],
radius: 1.3
});
const polygons = _cube.subtract(_sphere).toPolygons();
if (!this._renderer.geometryInHash(gId)) {
const geom = new p5.Geometry();
let vCount = 0;
const vertice_dict = {};
for (let i = 0; i < polygons.length; i++) {
let p = polygons[i].vertices
for (let j = 2; j < p.length; j++) {
let v, n;
let ia, ib, ic;
v = p[0].pos;
n = p[0].normal;
ia = vertice_dict[`${v.x},${v.y},${v.z},${n.x},${n.y},${n.z}`]
if (ia === undefined) {
geom.vertices.push(createVector(v.x, v.y, v.z));
geom.vertexNormals.push(createVector(n.x, n.y, n.z));
vertice_dict[`${v.x},${v.y},${v.z},${n.x},${n.y},${n.z}`] = vCount;
ia = vCount;
vCount++;
}
v = p[j-1].pos;
// n = p[j-1].normal;
ib = vertice_dict[`${v.x},${v.y},${v.z},${n.x},${n.y},${n.z}`]
if (ib === undefined) {
geom.vertices.push(createVector(v.x, v.y, v.z));
geom.vertexNormals.push(createVector(n.x, n.y, n.z));
vertice_dict[`${v.x},${v.y},${v.z},${n.x},${n.y},${n.z}`] = vCount;
ib = vCount;
vCount++;
}
v = p[j].pos;
// n = p[j].normal;
ic = vertice_dict[`${v.x},${v.y},${v.z},${n.x},${n.y},${n.z}`]
if (ic === undefined) {
geom.vertices.push(createVector(v.x, v.y, v.z));
geom.vertexNormals.push(createVector(n.x, n.y, n.z));
vertice_dict[`${v.x},${v.y},${v.z},${n.x},${n.y},${n.z}`] = vCount;
ic = vCount;
vCount++;
}
geom.faces.push([ia, ib, ic]);
}
}
this._renderer.createBuffers(gId, geom);
}
}
function draw() {
background(0)
orbitControl(3)
rotateY(radians(-frameCount / 3))
// unfortunately doesn't react with overall shading like it should
normalMaterial()
translate(200, 0)
rotateY(radians(-frameCount / 2))
this._renderer.drawBuffersScaled(gId, 200, 200, 200);
}