Fusion 360 | Case Study 27

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

КОМЕНТАРІ • 23

  • @cjsveningsson
    @cjsveningsson 8 місяців тому

    I had the impulse of “perfection or go home!” for your tutorials, much appreciated! With that said, “pattern on path” seemed to become normal to the path on the circumference rather than center of the holes (and I don’t think you mentioned it). So close, yet not perfect 😋🤩

  • @loubano
    @loubano 2 роки тому +5

    In every of your single tutorial, you are so amazing! !!!!
    You made all hard project much easier to understand 😃👍
    Thanks a lot for your time and all your great videos 😃😃😃😃
    Kind regards
    Cedric
    France

  • @EuroRogue
    @EuroRogue 2 роки тому

    I absolutely love that you explain the multiple ways of doing things, that is extremely valuable

  • @alaingrignon
    @alaingrignon Рік тому +1

    I’m looking to do this kind of dimple on a compound curved surface so this pattern option is fantastic. What I’m curious about would be, how to create these dimples as you did but also add a small fillet around the edge of each dimple. Would I do that before creating a pattern, using a surrogate or could I also add these after the pattern is done?

  • @mirage3rd
    @mirage3rd 2 роки тому

    Your insight and detailed explanations are invaluable. Thanks

  • @darkmatter7442
    @darkmatter7442 2 роки тому

    Thanks I’ve used the circular array approach 4 days ago and had a little trouble to align the holes in my case. With the geometrical pattern it is much easier.

  • @bknesheim
    @bknesheim 2 роки тому +1

    I often take models in your tutorials and try to recreate them in OpenScad.
    The end result is often not perfect, but for this model I could recreate in about the same time as the video last. :-)
    This is all the code needed:
    difference()
    {
    Base();
    Dimpels();
    }
    module Dimpels()
    {
    translate([ 0 , 0, 100 ])
    Dimple();
    for(Pos = [1: 1: 4] )
    {
    for(Deg = [0: 72/Pos: 360] )
    {
    rotate([ 0, 7*Pos, Deg])
    translate([ 0 , 0, 100 ])
    Dimple();
    }
    }
    }
    module Dimple()
    {
    sphere(d=8, $fn=25);
    // cylinder(h=10,d=8, center=true, $fn=25);
    }
    module Base()
    {
    translate([ 0 , 0, 78 ])
    intersection()
    {
    cylinder( h=30, d=110, $fn=100);
    translate([ 0, 0, -76.6])
    sphere( d=200, $fn=100);
    }
    }

  • @lukafh
    @lukafh 2 роки тому

    Perfect! As always! Thank You!

  • @ruudb72
    @ruudb72 2 роки тому

    Nice way to achive this. Thanks!

  • @ahamatibrahimhassan3265
    @ahamatibrahimhassan3265 2 роки тому

    you are amazing, keep the good work up.

  • @phamthohongduong
    @phamthohongduong 2 роки тому

    Btw, how are you rotating the model so smoothly? Special hardware trackball or something? Thanks for the video

    • @_assassa_6439
      @_assassa_6439 2 роки тому +1

      Looks like 3D spacemouse. It was mentioned on one of the previous videos, if I remember correctly.

    • @Fusion360School
      @Fusion360School  2 роки тому +1

      Yes, it is a 3d iconnexion mouse.

  • @J244
    @J244 2 роки тому

    👍👍👍

  • @ahamatibrahimhassan3265
    @ahamatibrahimhassan3265 2 роки тому

    salute sir

  • @rbyt2010
    @rbyt2010 2 роки тому

    Very useful! I should just go test this myself, but... :) Why did you need to create the separate centerline axis in the dimple for the revolve, given that you were already on the XY axis?

    • @Fusion360School
      @Fusion360School  2 роки тому +1

      The centerline is to split the profile into 2 semi circles. The revolve would not work with a full circle. Using the centerline also has the added bonus in that it gets automatically selected as the revolve axis when you begin the revolve command.

    • @rbyt2010
      @rbyt2010 2 роки тому

      @@Fusion360School ah right… I remember now; 360 revolve won’t work to create a sphere - special case. Thanks!

  • @alejandroperez5368
    @alejandroperez5368 2 роки тому

    That plastic extension shouldn't be a paid feature -.-

  • @B3D
    @B3D 2 роки тому

    I guess you are using 3D mouse. because mouse point not moving + screen move so smooth .
    I tried that buy realize quick annoying because if my left hand must stick on keyboard for all shortcut.
    may i know how you accross this ?

    • @Fusion360School
      @Fusion360School  2 роки тому

      I actually use the 3d mouse only for presentation purposes, as the smooth motion is more pleasing to the eye. While doing my own designs, I don't really use it.

  • @1MRsnuppy
    @1MRsnuppy 2 роки тому

    Hi, as usual, a great movie, I'm a bit off the topic;) but I'm already at the end of reworking all your movies;) and I have a question about the function that you sometimes use, namely Zebra Analysis, could you see a movie about it because I don't quite understand what that's what it's all about :)

    • @conflictchris
      @conflictchris 2 роки тому +1

      zebra analysis is a visualisation tool. it helps visualise contours across a body or surface as a whole, its like a 3D curvature comb.
      its ideal for finding C1/C2/C3(Joins, Tangents, Curvatures) consistences but also lets you see if you have a point where a convergence/discontinuity/‘pucker’ is as the zebra stripes will not be evenly spaced.
      hope that helps