Write an STL (ASCII) File in PYTHON || TUTORIAL

Поділитися
Вставка
  • Опубліковано 23 січ 2025

КОМЕНТАРІ • 18

  • @diegojimenezarreguin5445
    @diegojimenezarreguin5445 15 днів тому +1

    Great video, thank you for sharing. Congratulations from Mexico.

  • @eliazonta7235
    @eliazonta7235 Рік тому +4

    Hi, thank you for this resource, could you please share how the "cone" function is written ?

  • @user-hp5qb1id5c
    @user-hp5qb1id5c 2 роки тому +2

    thank you for tutorial video. can i get code file and stl file of tutorial video?

  • @AhmedAbdullah-t4d
    @AhmedAbdullah-t4d Рік тому +1

    thank you so much for making this video. helped me soooooo much.

  • @VictorSantos-yb8ir
    @VictorSantos-yb8ir 7 місяців тому +1

    Helped me so much! Thank you.

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

    Yes !!! Thank you. Salutations from France.

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

    from utilities import *
    which module is that, please?
    tried
    pip install utilities-package without any luck.

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

      In python you can define functions in another ".py" file (here it was utilities.py) and can use the defined functions in any other python file by importing the functions using the format "from [filename] import [function]".
      If you want to import all the functions at once, you can import all the functions with a single line of code using "*" instead of specifying the name of just one function name. e.g. from [filename] import *
      In the video he uses "from utilities import *". Where "utilities" is the file name and "*" tells python to import all functions. Near the end of the video 9:01 he even opens the file "utilites.py" where he has defined some functions beforehand.

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

      thank you@@waqqiali2960 !!!

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

    A beginners question. I have copied the code from your video but the 'utilities' library does not exist when I search on PyPl. Can you tell me where I can find it please? I have done a general search for the library but as you may expect there are lots of libraries called "utilities" out there. Thanks

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

      I am sorry for the late reply, you might have already found the answer, but for posterity:
      the utilities library is a library I created to store the functions of the code, you can do that too by creating a .py file and saving your functions there. The .py file must be in the directory of the main script.

  • @prot0form775
    @prot0form775  2 роки тому +4

    Code starts at 2:29
    **CORRECTIONS**
    6:38 - LINE 26 magnitude = ( ... ) ** 0.5

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

    Amazing.

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

    Very Informative Video, I'm also working on similar area. Are you a PhD scholar or researcher, if yes would like to read you work.

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

      Thank you very much! I am a graduate in the hypersonics field, mainly numerical and analytical. My work is only tangentially related to computer graphics. Sadly I cannot share my work.