Add Thickness to faces
问题 i create walls by creating faces with some points i have. The creation of the walls does work without an issue. Now i want to add some thickness to my walls but iam not quite sure how to. here is my code for creating my walls: makeWall(start, end) { let v1 = this.helpers.toVec3(start); //0 let v2 = this.helpers.toVec3(end); //1 let v3 = v2.clone(); //2 v3.y = this.wallHeight; let v4 = v1.clone(); //3 v4.y = this.wallHeight; let points = [ v1.clone(), v2.clone(), v3.clone(), v4.clone() ];