1

I've just bought Anycubic i3 Mega printer and trying to level it. So far I've printed test object and 2 others but looks like there are problems with leveling.

I want to make image of 5 small one layer squares(one in each corner and one in center). Looking for recommendations of simple software/tutorials/approaches to do it. I tried zbrush but found that it kind of complicated.

Trish
  • 22,760
  • 13
  • 53
  • 106
arch09129
  • 13
  • 2

2 Answers2

6

You are probably looking for something like this:

leveling print object

Note this is for large beds (300 x 300 mm), so you would have to X, Y scale this in your slicer.

This is a simple part that is very easily generated with OpenSCAD 3D design software (very good modeller if you are familiar with software coding), but could easily been designed in any other tool.

Another leveling and centering print that is created with OpenSCAD is this, and could be a start for you to create your own design:

leveling and centering print object

Note that the file with the design is located in the "files" section.

Edit: Some code for OpenSCAD made within 5 minutes (I don't type fast so it could have been faster if I did not use the constants, but if you go OpenSCAD, making parametric designs is almost a must ;) ):

// Set constants as you like
width = 30;
depth = 30;
layer_height = 0.2;
first_layer_height = 0.2;
nr_of_layers = 2;
box_size = 180;

// Calculated parameters
height = first_layer_height + (nr_of_layers - 1) * layer_height;

// Draw the test object
translate([-width/2, -depth/2,0]){
  // Draw the center square
  cube(size = [width, depth, height], center = false);
  // Draw the corner squares
  for (x=[-1:2:1]){
    for (y=[-1:2:1]){
      translate([x * (box_size-width)/2, y * (box_size-depth)/2, 0])
        cube(size = [width, depth, height], center = false);
    } 
  } 
}

Rendered figure: rendered image of the 5 square level test print

0scar
  • 37,708
  • 12
  • 68
  • 156
3

One of the most accessible modelling tools has to be tinkercad. Everything is done in the browser, and it even works (to an extent) on a tablet.

I wouldn't recommend getting too attached to it, since it is fairly limited. As an introduction to modeling in 3D, and some of the spatial concepts that you will need to get used to, it works very well.

Sean Houlihane
  • 3,852
  • 2
  • 22
  • 39