rotate_extrude, linear_extrude-OpenSCAD Tutorial 14

Поділитися
Вставка
  • Опубліковано 26 гру 2024

КОМЕНТАРІ • 6

  • @led6791
    @led6791 4 роки тому +1

    Thanks this helped a lot!

  • @gilbertodipietro8494
    @gilbertodipietro8494 Рік тому

    Very interesting. Thanks a lot

  • @EDGE94
    @EDGE94 5 місяців тому

    Additional hints are:
    * your object for the rotation cannot be a 3D object
    * there must not be anything left from your rotation axis z (for rotation symmetrical objects like a bullet start with a halved 2D section)

  • @polielie
    @polielie 3 роки тому

    How can I rotate extrude a module?

    • @CharthuliusWheezer
      @CharthuliusWheezer  3 роки тому

      Essentially the module has to produce a 2d shape. So the functions that are used in the module have to lead to a 2d shape being produced. for example:
      //========================
      module moved_diamond(x){
      translate([x, 0])
      scale([1, 2])
      rotate([0, 0, 45])
      square(size=1, center=true);
      }
      rotate_extrude($fn=100)
      moved_diamond(10);
      //=======================
      The "moved_diamond" module produces a 2d shape and the rotate_extrude function can be used on it. this would not work if a 3d shape was produced instead.

  • @babyboxer5795
    @babyboxer5795 6 місяців тому

    W thx