static Drawing drawWall() { Drawing d = new Drawing(); d.setCheckIntersection(false); d.setFaceColor(Color.WHITE); d.setTransparency(0); d.moveTo(-0.4, 0, -0.4); Shape base = d.box(0.8, 0.2, 0.8); d.moveTo(0, 0.2, 0); Shape col = d.cone(0.3, 0.2, 3.8, Math.PI * 2); d.moveTo(0, 4, 0); Shape capitel1 = d.cone(0.2, 0.3, 0.2, Math.PI * 2); d.move(0, 0.2, 0); Shape capitel2 = d.cylinder(0.35, 0.15, Math.PI * 2); Shape column = d.fuse(base, col); column = d.fuse(column, capitel1); column = d.fuse(column, capitel2); d.moveTo(-1, 0, 0); Shape cutBox = d.box(5, 6, 1); column = d.cut(column, cutBox); d.delete(cutBox); Shape columns = d.array(column, 6, 2, 0, 0); d.moveTo(-0.4, 4.35, -0.4); Shape beam = d.box(5 * 2 + 0.8, 0.3, 0.4); d.moveTo(-0.4, 0, 0); d.setFaceColor(Color.GREEN); Shape wall = d.box(5 * 2 + 0.8, 4.65, 0.5); wall = d.fuse(wall, beam); d.fuse(columns, wall); d.setDirection(0, 0, 1); d.moveTo(1, 3, 0); Shape arch = d.cylinder(0.5, 0.5, Math.PI * 2); d.move(-0.5, 0, 0); Shape door = d.box(1, -3, 0.5); door = d.fuse(door, arch); wall = d.cut(wall, door); door = d.copy(door, 2, 0, 0); wall = d.cut(wall, door); door = d.copy(door, 2, 0, 0); wall = d.cut(wall, door); door = d.copy(door, 2, 0, 0); wall = d.cut(wall, door); door = d.copy(door, 2, 0, 0); wall = d.cut(wall, door); d.save("columns.brep"); return d; }
static Drawing drawFigure() { Drawing d = new Drawing(); d.setCheckIntersection(true); d.setLineWidth(2); d.setFaceColor(Color.CYAN); d.moveTo(0, 0, 0); d.line(1, 0, 0); d.line(0, 0, 1); d.line(-1, 0, 0); Shape rect = d.close(); d.setFaceColor(Color.YELLOW); d.move(0.2, 0, 0.2); d.line(0.6, 0, 0); d.line(0, 0, 0.6); d.line(-0.6, 0, 0); Shape rect1 = d.close(); d.moveTo(0, 0, 2); d.setDirection(0, 1, 0); Shape s = d.extrude(rect, 0.5); // d.fillet(s); // d.setDirection(1, 0, 0); // Shape shape = d.revolve(rect, Math.PI/4); //// d.setCheckIntersection(false); // d.setVirtualDrawingMode(true); // d.moveTo(0, 1, 0.6); // Shape circle = d.circle(0.15); // Shape cylinder = d.extrude(circle, 1); // d.setVirtualDrawingMode(false); // // //// d.add(cylinder); // shape = d.cut(shape, cylinder); // // d.moveTo(0,0,0); // d.setDirection(-1, 0, 0); // Shape rev = d.revolve(rect1, Math.PI); // d.delete(rev); // d.delete(d.getCommon()); // // //// d.setCheckIntersection(false); //// int n = 10; //// double dist = 2; //// Shape line = d.array(shape, n, dist, 0, 0); //// Shape area = d.array(line, n, 0, dist, 0); //// Shape cube = d.array(area, n, 0, 0, dist); //// //// d.setCheckIntersection(true); // //// d.copy(shape, 2,0,0); // //// Shape shape1 = d.copy(shape, 2, 0, 0); //// //// shape1 = d.scale(shape1, 0.5); //// //// d.moveTo(2, 0, 0); //// d.setDirection(0, 0, 1); //// shape1 = d.rotate(shape1, Math.PI/4); //// // //// rect1.setSelected(true); ////// d.save("figure.brep"); ////// d.explode(shape); return d; }