SlideShare a Scribd company logo
1 of 17
Download to read offline
Blender & Python. Creating 3D
primitives with writing codes
Assoc. Prof. Dr. Eng. Tihomir Dovramadjiev
Technical University of Varna
MTF, Department Industrial Design
tihomir.dovramadjiev@tu-varna.bg
DOI: 10.13140/RG.2.2.36224.48647
https://www.researchgate.net/publication/331163653_Blender_Python_Creating_3D_primitives_with_writing_codes
2019 DrTAD 2
About Blender software
● Blender is the free and open source 3D creation suite. It supports the entirety of the 3D
pipeline—modeling, rigging, animation, simulation, rendering, compositing and motion
tracking, even video editing and game creation.https://www.blender.org/
● Blender software. 2.79b Version. About, License & Development.
https://www.researchgate.net/publication/328677236_Blender_software_279b_Version_
About_License_Development
● Modern accessible application of the system Blender in 3D design practice.
https://www.researchgate.net/publication/312033613_Modern_accessible_application_of
_the_system_Blender_in_3D_design_practice
2019 DrTAD 3
Scripting & Extending Blender »
Introduction
●
Introduction
● Python is an interpreted, interactive, object-oriented programming language.
It incorporates modules, exceptions, dynamic typing, very high-level dy-
namic data types, and classes. Python combines remarkable power with
very clear syntax.
● Python scripts are a powerful and versatile way to extend Blender functional-
ity. Most areas of Blender can be scripted, including animation, render-
ing, import and export, object creation and the scripting of repetitive
tasks.
● To interact with Blender, scripts can make use of the tightly integrated API.
● https://docs.blender.org/manual/en/latest/advanced/scripting/introduction.html
CC-BY-SA 4.0 Int. License
2019 DrTAD 4
Scripting & Extending Blender »
Introduction
● General Information
● Links that are useful while writing scripts:
● Python.org – General information about Python.
● Blender Python API – Official API documentation. Use this for referencing while writ-
ing scripts.
● API Introduction – A short introduction to get you started with the API. Contains ex-
amples.
● Links that deal with distributing your scripts:
● Sharing scripts – Information on how to share your scripts and get them included in
the official Blender distribution.
● Creating Add-ons – Add-ons are used to encapsulate and distribute scripts.
● Add-ons project – Project to maintain a central repository of extensions to Blender.
● https://docs.blender.org/manual/en/latest/advanced/scripting/introduction.html
CC-BY-SA 4.0 Int. License
2019 DrTAD 5
Switch to Scripting Screen
2019 DrTAD 6
Scripting / Python Console
Blender 2.79. Python Interactive Console 3.5.3 (default May 20 2017)
2019 DrTAD 7
Adding a Cube primitive
bpy.ops.mesh.primitive_cube_add(radius=1, view_align=False,
enter_editmode=False, location=(0, 0, 0), layers=(True, False, False,
False, False, False, False, False, False, False, False, False, False,
False, False, False, False, False, False, False))
●Source: Martin  Christen (2016). 3D  Computer  Graphics  with Python. „3D  Graphics  the Pythonic Way“. Institut  Vermessung  und  Geoinformation. Swiss  Python
 Summit. Switzerland https://www.python-summit.ch/files/4-slides-martin-christen-sps16.pdf
2019 DrTAD 8
Appearing of the Cube primitive
2019 DrTAD 9
Adding a New 3D model
Deleting the Cube primitive
2019 DrTAD 10
Adding a Cylinder primitive / R=1;
Location X:0, Y:0, Z:0
bpy.ops.mesh.primitive_cylinder_add(radius=1, view_align=False,
enter_editmode=False, location=(0, 0, 0), layers=(True, False, False,
False, False, False, False, False, False, False, False, False, False,
False, False, False, False, False, False, False))
2019 DrTAD 11
Appearing of the Cylinder primitive
2019 DrTAD 12
Adding a new Cylinder primitive /
R=4; Location X:8, Y:0, Z:0
bpy.ops.mesh.primitive_cylinder_add(radius=4, view_align=False,
enter_editmode=False, location=(8, 0, 0), layers=(True, False, False,
False, False, False, False, False, False, False, False, False, False,
False, False, False, False, False, False, False))
2019 DrTAD 13
Appearing of the Cylinder.001
primitive
2019 DrTAD 14
Adding a new Cylinder primitive /
R=8; Location X:24, Y:0, Z:0
bpy.ops.mesh.primitive_cylinder_add(radius=8, view_align=False,
enter_editmode=False, location=(24, 0, 0), layers=(True, False, False,
]False, False, False, False, False, False, False, False, False, False,
False, False, False, False, False, False, False))
2019 DrTAD 15
Appearing of the Cylinder.002
primitive
2019 DrTAD 16
Result
2019 DrTAD 17
References
● Blender Software
https://www.blender.org/
● Tihomir Dovramadjiev PhD. Modern accessible application of the system Blender in 3D design practice.
https://www.researchgate.net/publication/312033613_Modern_accessible_application_of_the_system_Blender_in_3D_design_practice
Blender software. 2.79b Version. About, License & Development. DOI: 10.13140/RG.2.2.36167.75687
https://www.researchgate.net/publication/328677236_Blender_software_279b_Version_About_License_Development
● Blender User Manual.Release 2.78. Blender Community. Mar 08, 2017
Scripting & Extending Blender
https://docs.blender.org/manual/en/latest/advanced/scripting/index.html
● Introduction
https://docs.blender.org/manual/en/latest/advanced/scripting/introduction.html
● Scripting & Security
https://docs.blender.org/manual/en/latest/advanced/scripting/security.html
● Add-ons
● https://docs.blender.org/manual/en/latest/addons/index.html
● Add-on Tutorial
https://docs.blender.org/manual/en/latest/advanced/scripting/addon_tutorial.html
CC-BY-SA 4.0 Int. License
● https://www.slideshare.net/TihomirDovramadjievP/rosen-vasilev-hristo-skulev-and-tihomir-dovramadjiev-optimization-of-design-opportunities-and-transfer-of-information-between-
data-3d-graphics-program-blender-and-solidworks-cad-system
● https://www.youtube.com/watch?v=K0yb4sZ7B4g
● https://www.youtube.com/watch?v=F-cgCXg7Z3o
● https://www.youtube.com/watch?v=ssHiWpVuxTk
● Martin  Christen (2016). 3D  Computer  Graphics  with Python. „3D  Graphics  the Pythonic Way“. Institut  Vermessung  und  Geoinformation. Swiss  Python  Summit.
Switzerland https://www.python-summit.ch/files/4-slides-martin-christen-sps16.pdf
● Patrik Malm. Scientific Visualization. Lecture 7: Other Visualization software. Centre for Image Analysis. Swedish University of Agricultural Sciences. Uppsala University
● Witold Jaworski. Programming Add-Ons for Blender 2.5 - version 1.01. ISBN: 978-83-931754-2-0.
● Apace OpenOffice
http://www.openoffice.org/download/

More Related Content

Similar to DrTAD Blender & Python. Creating 3D primitives with writing codes

Introduction to Gradio library in python.pptx
Introduction to Gradio library in python.pptxIntroduction to Gradio library in python.pptx
Introduction to Gradio library in python.pptx
vahid67ebrahimian
 

Similar to DrTAD Blender & Python. Creating 3D primitives with writing codes (20)

DrTAD Blender software. The Mystical Portal. FX VIDEO Tutorial
DrTAD Blender software. The Mystical Portal. FX VIDEO TutorialDrTAD Blender software. The Mystical Portal. FX VIDEO Tutorial
DrTAD Blender software. The Mystical Portal. FX VIDEO Tutorial
 
Blender software. example 8b. 3 d model of anchor from text doi.
Blender software. example 8b. 3 d model of anchor from text doi.Blender software. example 8b. 3 d model of anchor from text doi.
Blender software. example 8b. 3 d model of anchor from text doi.
 
DrTAD Blender software. Example 6а. 3D Modeling of Human DNA. Array & Simple ...
DrTAD Blender software. Example 6а. 3D Modeling of Human DNA. Array & Simple ...DrTAD Blender software. Example 6а. 3D Modeling of Human DNA. Array & Simple ...
DrTAD Blender software. Example 6а. 3D Modeling of Human DNA. Array & Simple ...
 
Blender Tutorial - Creating 3D Model Of Millennium Falcon And Cosmos Scene
Blender Tutorial - Creating 3D Model Of Millennium Falcon And Cosmos SceneBlender Tutorial - Creating 3D Model Of Millennium Falcon And Cosmos Scene
Blender Tutorial - Creating 3D Model Of Millennium Falcon And Cosmos Scene
 
DrTAD Blender software. Layers & Render. Groups & Parents
DrTAD Blender software. Layers & Render. Groups & ParentsDrTAD Blender software. Layers & Render. Groups & Parents
DrTAD Blender software. Layers & Render. Groups & Parents
 
DrTAD 3 Blender software. Editor Type
DrTAD 3 Blender software. Editor TypeDrTAD 3 Blender software. Editor Type
DrTAD 3 Blender software. Editor Type
 
DrTAD Blender software. Example 10. Technical Documentation with MeasureIt. D...
DrTAD Blender software. Example 10. Technical Documentation with MeasureIt. D...DrTAD Blender software. Example 10. Technical Documentation with MeasureIt. D...
DrTAD Blender software. Example 10. Technical Documentation with MeasureIt. D...
 
DrTAD Blender software. Example 8а. 3D Text. Change Font. Extrude, Bevel, Res...
DrTAD Blender software. Example 8а. 3D Text. Change Font. Extrude, Bevel, Res...DrTAD Blender software. Example 8а. 3D Text. Change Font. Extrude, Bevel, Res...
DrTAD Blender software. Example 8а. 3D Text. Change Font. Extrude, Bevel, Res...
 
GROCON'19: Test Automation Strategy for Legacy System
GROCON'19: Test Automation Strategy for Legacy SystemGROCON'19: Test Automation Strategy for Legacy System
GROCON'19: Test Automation Strategy for Legacy System
 
DrTAD 1 Introduction to Blender software. Interface
DrTAD 1 Introduction to Blender software. Interface DrTAD 1 Introduction to Blender software. Interface
DrTAD 1 Introduction to Blender software. Interface
 
DrTAD Blender software. Example 9b. 3D Model of Flashlight. Spot Light, Shade...
DrTAD Blender software. Example 9b. 3D Model of Flashlight. Spot Light, Shade...DrTAD Blender software. Example 9b. 3D Model of Flashlight. Spot Light, Shade...
DrTAD Blender software. Example 9b. 3D Model of Flashlight. Spot Light, Shade...
 
DrTAD 6 Blender software. Loop Ssubdivide. Loop Cut and Slide
DrTAD 6 Blender software. Loop Ssubdivide. Loop Cut and SlideDrTAD 6 Blender software. Loop Ssubdivide. Loop Cut and Slide
DrTAD 6 Blender software. Loop Ssubdivide. Loop Cut and Slide
 
DrTAD Blender Tips. How to change language on Russian, German, Spanish, Frenc...
DrTAD Blender Tips. How to change language on Russian, German, Spanish, Frenc...DrTAD Blender Tips. How to change language on Russian, German, Spanish, Frenc...
DrTAD Blender Tips. How to change language on Russian, German, Spanish, Frenc...
 
IRJET- Online Compiler for Computer Languages with Security Editor
IRJET-  	  Online Compiler for Computer Languages with Security EditorIRJET-  	  Online Compiler for Computer Languages with Security Editor
IRJET- Online Compiler for Computer Languages with Security Editor
 
DrTAD 2 introduction to Blender software. 3D View & Editors
DrTAD 2 introduction to Blender software. 3D View & EditorsDrTAD 2 introduction to Blender software. 3D View & Editors
DrTAD 2 introduction to Blender software. 3D View & Editors
 
The interactive 3D logo of Technical University - Varna adapted for Facebook
The interactive 3D logo of Technical University - Varna adapted for FacebookThe interactive 3D logo of Technical University - Varna adapted for Facebook
The interactive 3D logo of Technical University - Varna adapted for Facebook
 
DrTAD Blender software. Quick creating an interior scene. Curves, Subdivide. ...
DrTAD Blender software. Quick creating an interior scene. Curves, Subdivide. ...DrTAD Blender software. Quick creating an interior scene. Curves, Subdivide. ...
DrTAD Blender software. Quick creating an interior scene. Curves, Subdivide. ...
 
DrTAD Blender software. Rigging & Animation of 3D Human Model
DrTAD Blender software. Rigging & Animation of 3D Human ModelDrTAD Blender software. Rigging & Animation of 3D Human Model
DrTAD Blender software. Rigging & Animation of 3D Human Model
 
Introduction to Gradio library in python.pptx
Introduction to Gradio library in python.pptxIntroduction to Gradio library in python.pptx
Introduction to Gradio library in python.pptx
 
STUDY OF BUILDING INFORMATION MODELING PROCESS
STUDY OF BUILDING INFORMATION MODELING PROCESSSTUDY OF BUILDING INFORMATION MODELING PROCESS
STUDY OF BUILDING INFORMATION MODELING PROCESS
 

More from FIDE Master Tihomir Dovramadjiev PhD

Journal of Pharmaceutical Research International Certificate of Excellence in...
Journal of Pharmaceutical Research International Certificate of Excellence in...Journal of Pharmaceutical Research International Certificate of Excellence in...
Journal of Pharmaceutical Research International Certificate of Excellence in...
FIDE Master Tihomir Dovramadjiev PhD
 
MDPI Q1 Flyer Special Issue Editor Assoc Prof Tihomir Dovramadjiev PhD Eng Ma...
MDPI Q1 Flyer Special Issue Editor Assoc Prof Tihomir Dovramadjiev PhD Eng Ma...MDPI Q1 Flyer Special Issue Editor Assoc Prof Tihomir Dovramadjiev PhD Eng Ma...
MDPI Q1 Flyer Special Issue Editor Assoc Prof Tihomir Dovramadjiev PhD Eng Ma...
FIDE Master Tihomir Dovramadjiev PhD
 
Journal of Pharmaceutical Research International Certificate of Excellence in...
Journal of Pharmaceutical Research International Certificate of Excellence in...Journal of Pharmaceutical Research International Certificate of Excellence in...
Journal of Pharmaceutical Research International Certificate of Excellence in...
FIDE Master Tihomir Dovramadjiev PhD
 

More from FIDE Master Tihomir Dovramadjiev PhD (20)

Journal of Pharmaceutical Research International Certificate of Excellence in...
Journal of Pharmaceutical Research International Certificate of Excellence in...Journal of Pharmaceutical Research International Certificate of Excellence in...
Journal of Pharmaceutical Research International Certificate of Excellence in...
 
MDPI Basel Switzerland CERTIFICATE OF SERVICE 2021 as Guest Editor of Special...
MDPI Basel Switzerland CERTIFICATE OF SERVICE 2021 as Guest Editor of Special...MDPI Basel Switzerland CERTIFICATE OF SERVICE 2021 as Guest Editor of Special...
MDPI Basel Switzerland CERTIFICATE OF SERVICE 2021 as Guest Editor of Special...
 
MDPI Basel Switzerland CERTIFICATE OF SERVICE as 2021 as Topical Advisory Pan...
MDPI Basel Switzerland CERTIFICATE OF SERVICE as 2021 as Topical Advisory Pan...MDPI Basel Switzerland CERTIFICATE OF SERVICE as 2021 as Topical Advisory Pan...
MDPI Basel Switzerland CERTIFICATE OF SERVICE as 2021 as Topical Advisory Pan...
 
MDPI Q1 Flyer Special Issue Editor Assoc Prof Tihomir Dovramadjiev PhD Eng Ma...
MDPI Q1 Flyer Special Issue Editor Assoc Prof Tihomir Dovramadjiev PhD Eng Ma...MDPI Q1 Flyer Special Issue Editor Assoc Prof Tihomir Dovramadjiev PhD Eng Ma...
MDPI Q1 Flyer Special Issue Editor Assoc Prof Tihomir Dovramadjiev PhD Eng Ma...
 
MDPI REVIEW CONFIRMATION CERTIFICATE 30 December 2021 Assoc. Prof. Tihomir Do...
MDPI REVIEW CONFIRMATION CERTIFICATE 30 December 2021 Assoc. Prof. Tihomir Do...MDPI REVIEW CONFIRMATION CERTIFICATE 30 December 2021 Assoc. Prof. Tihomir Do...
MDPI REVIEW CONFIRMATION CERTIFICATE 30 December 2021 Assoc. Prof. Tihomir Do...
 
Journal of Pharmaceutical Research International Certificate of Excellence in...
Journal of Pharmaceutical Research International Certificate of Excellence in...Journal of Pharmaceutical Research International Certificate of Excellence in...
Journal of Pharmaceutical Research International Certificate of Excellence in...
 
FIDE Master Tihomir Dovramadjiev / Тихомир Доврамаджиев -1 place ChessBase/Pl...
FIDE Master Tihomir Dovramadjiev / Тихомир Доврамаджиев -1 place ChessBase/Pl...FIDE Master Tihomir Dovramadjiev / Тихомир Доврамаджиев -1 place ChessBase/Pl...
FIDE Master Tihomir Dovramadjiev / Тихомир Доврамаджиев -1 place ChessBase/Pl...
 
CHESSBOXING SPORTS ILLUSTRATED USA - The First European Chessboxing Champion...
CHESSBOXING SPORTS ILLUSTRATED USA  - The First European Chessboxing Champion...CHESSBOXING SPORTS ILLUSTRATED USA  - The First European Chessboxing Champion...
CHESSBOXING SPORTS ILLUSTRATED USA - The First European Chessboxing Champion...
 
Official Certificate DATA 2021 - Session Chair Assoc. Prof. Dr. Eng. TIHOMIR ...
Official Certificate DATA 2021 - Session Chair Assoc. Prof. Dr. Eng. TIHOMIR ...Official Certificate DATA 2021 - Session Chair Assoc. Prof. Dr. Eng. TIHOMIR ...
Official Certificate DATA 2021 - Session Chair Assoc. Prof. Dr. Eng. TIHOMIR ...
 
DEPORVIDA SPAIN CHESSBOXING
DEPORVIDA SPAIN CHESSBOXINGDEPORVIDA SPAIN CHESSBOXING
DEPORVIDA SPAIN CHESSBOXING
 
NEW YORK POST CHESSBOXING
NEW YORK POST CHESSBOXINGNEW YORK POST CHESSBOXING
NEW YORK POST CHESSBOXING
 
CHESSBOXING MENSHEALTH Gambito de dama pone de moda el Chess Boxing una disci...
CHESSBOXING MENSHEALTH Gambito de dama pone de moda el Chess Boxing una disci...CHESSBOXING MENSHEALTH Gambito de dama pone de moda el Chess Boxing una disci...
CHESSBOXING MENSHEALTH Gambito de dama pone de moda el Chess Boxing una disci...
 
CHESSBOXING SPORTOPOLIS ITALY
CHESSBOXING SPORTOPOLIS ITALYCHESSBOXING SPORTOPOLIS ITALY
CHESSBOXING SPORTOPOLIS ITALY
 
Deporte del día Chess Boxing Ajedrez Boxeo
Deporte del día Chess Boxing Ajedrez BoxeoDeporte del día Chess Boxing Ajedrez Boxeo
Deporte del día Chess Boxing Ajedrez Boxeo
 
CHESSBOXING Najlepsi bokerzy w Indiach, Najlepsi bokserzy Bliskiego Wschodu i...
CHESSBOXING Najlepsi bokerzy w Indiach, Najlepsi bokserzy Bliskiego Wschodu i...CHESSBOXING Najlepsi bokerzy w Indiach, Najlepsi bokserzy Bliskiego Wschodu i...
CHESSBOXING Najlepsi bokerzy w Indiach, Najlepsi bokserzy Bliskiego Wschodu i...
 
Chess Boxing Marta Grygierek
Chess Boxing Marta Grygierek Chess Boxing Marta Grygierek
Chess Boxing Marta Grygierek
 
MDPI REVIEW CONFIRMATION CERTIFICATE 24 September 2021 Assoc. Prof. Tihomir D...
MDPI REVIEW CONFIRMATION CERTIFICATE 24 September 2021 Assoc. Prof. Tihomir D...MDPI REVIEW CONFIRMATION CERTIFICATE 24 September 2021 Assoc. Prof. Tihomir D...
MDPI REVIEW CONFIRMATION CERTIFICATE 24 September 2021 Assoc. Prof. Tihomir D...
 
MDPI REVIEW CONFIRMATION CERTIFICATE 29 July 2021 Assoc. Prof. Tihomir Dovram...
MDPI REVIEW CONFIRMATION CERTIFICATE 29 July 2021 Assoc. Prof. Tihomir Dovram...MDPI REVIEW CONFIRMATION CERTIFICATE 29 July 2021 Assoc. Prof. Tihomir Dovram...
MDPI REVIEW CONFIRMATION CERTIFICATE 29 July 2021 Assoc. Prof. Tihomir Dovram...
 
MDPI REVIEW CONFIRMATION CERTIFICATE 8454763 Assoc. Prof. Tihomir Dovramadjie...
MDPI REVIEW CONFIRMATION CERTIFICATE 8454763 Assoc. Prof. Tihomir Dovramadjie...MDPI REVIEW CONFIRMATION CERTIFICATE 8454763 Assoc. Prof. Tihomir Dovramadjie...
MDPI REVIEW CONFIRMATION CERTIFICATE 8454763 Assoc. Prof. Tihomir Dovramadjie...
 
WORLD CHESS BOXING ORGANIZATION supporting and promoting every sport worldwid...
WORLD CHESS BOXING ORGANIZATION supporting and promoting every sport worldwid...WORLD CHESS BOXING ORGANIZATION supporting and promoting every sport worldwid...
WORLD CHESS BOXING ORGANIZATION supporting and promoting every sport worldwid...
 

Recently uploaded

Just Call Vip call girls dharamshala Escorts ☎️9352988975 Two shot with one g...
Just Call Vip call girls dharamshala Escorts ☎️9352988975 Two shot with one g...Just Call Vip call girls dharamshala Escorts ☎️9352988975 Two shot with one g...
Just Call Vip call girls dharamshala Escorts ☎️9352988975 Two shot with one g...
gajnagarg
 
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
instagramfab782445
 
➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men 🔝jhansi🔝 Escorts S...
➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men  🔝jhansi🔝   Escorts S...➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men  🔝jhansi🔝   Escorts S...
➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men 🔝jhansi🔝 Escorts S...
amitlee9823
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
dollysharma2066
 
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
amitlee9823
 
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
amitlee9823
 
👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Agen...
👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Agen...👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Agen...
👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Agen...
karishmasinghjnh
 
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
nirzagarg
 
➥🔝 7737669865 🔝▻ dehradun Call-girls in Women Seeking Men 🔝dehradun🔝 Escor...
➥🔝 7737669865 🔝▻ dehradun Call-girls in Women Seeking Men  🔝dehradun🔝   Escor...➥🔝 7737669865 🔝▻ dehradun Call-girls in Women Seeking Men  🔝dehradun🔝   Escor...
➥🔝 7737669865 🔝▻ dehradun Call-girls in Women Seeking Men 🔝dehradun🔝 Escor...
amitlee9823
 
How to Build a Simple Shopify Website
How to Build a Simple Shopify WebsiteHow to Build a Simple Shopify Website
How to Build a Simple Shopify Website
mark11275
 
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
amitlee9823
 
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard ...
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard  ...Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard  ...
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard ...
nirzagarg
 

Recently uploaded (20)

AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
 
Q4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentationQ4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentation
 
Sector 105, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 105, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 105, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 105, Noida Call girls :8448380779 Model Escorts | 100% verified
 
Just Call Vip call girls dharamshala Escorts ☎️9352988975 Two shot with one g...
Just Call Vip call girls dharamshala Escorts ☎️9352988975 Two shot with one g...Just Call Vip call girls dharamshala Escorts ☎️9352988975 Two shot with one g...
Just Call Vip call girls dharamshala Escorts ☎️9352988975 Two shot with one g...
 
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
 
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
 
Hire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
Hire 💕 8617697112 Meerut Call Girls Service Call Girls AgencyHire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
Hire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
 
➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men 🔝jhansi🔝 Escorts S...
➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men  🔝jhansi🔝   Escorts S...➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men  🔝jhansi🔝   Escorts S...
➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men 🔝jhansi🔝 Escorts S...
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
WhatsApp Chat: 📞 8617697112 Call Girl Baran is experienced
WhatsApp Chat: 📞 8617697112 Call Girl Baran is experiencedWhatsApp Chat: 📞 8617697112 Call Girl Baran is experienced
WhatsApp Chat: 📞 8617697112 Call Girl Baran is experienced
 
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
 
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
 
👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Agen...
👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Agen...👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Agen...
👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Agen...
 
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
 
➥🔝 7737669865 🔝▻ dehradun Call-girls in Women Seeking Men 🔝dehradun🔝 Escor...
➥🔝 7737669865 🔝▻ dehradun Call-girls in Women Seeking Men  🔝dehradun🔝   Escor...➥🔝 7737669865 🔝▻ dehradun Call-girls in Women Seeking Men  🔝dehradun🔝   Escor...
➥🔝 7737669865 🔝▻ dehradun Call-girls in Women Seeking Men 🔝dehradun🔝 Escor...
 
How to Build a Simple Shopify Website
How to Build a Simple Shopify WebsiteHow to Build a Simple Shopify Website
How to Build a Simple Shopify Website
 
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
 
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard ...
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard  ...Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard  ...
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard ...
 

DrTAD Blender & Python. Creating 3D primitives with writing codes

  • 1. Blender & Python. Creating 3D primitives with writing codes Assoc. Prof. Dr. Eng. Tihomir Dovramadjiev Technical University of Varna MTF, Department Industrial Design tihomir.dovramadjiev@tu-varna.bg DOI: 10.13140/RG.2.2.36224.48647 https://www.researchgate.net/publication/331163653_Blender_Python_Creating_3D_primitives_with_writing_codes
  • 2. 2019 DrTAD 2 About Blender software ● Blender is the free and open source 3D creation suite. It supports the entirety of the 3D pipeline—modeling, rigging, animation, simulation, rendering, compositing and motion tracking, even video editing and game creation.https://www.blender.org/ ● Blender software. 2.79b Version. About, License & Development. https://www.researchgate.net/publication/328677236_Blender_software_279b_Version_ About_License_Development ● Modern accessible application of the system Blender in 3D design practice. https://www.researchgate.net/publication/312033613_Modern_accessible_application_of _the_system_Blender_in_3D_design_practice
  • 3. 2019 DrTAD 3 Scripting & Extending Blender » Introduction ● Introduction ● Python is an interpreted, interactive, object-oriented programming language. It incorporates modules, exceptions, dynamic typing, very high-level dy- namic data types, and classes. Python combines remarkable power with very clear syntax. ● Python scripts are a powerful and versatile way to extend Blender functional- ity. Most areas of Blender can be scripted, including animation, render- ing, import and export, object creation and the scripting of repetitive tasks. ● To interact with Blender, scripts can make use of the tightly integrated API. ● https://docs.blender.org/manual/en/latest/advanced/scripting/introduction.html CC-BY-SA 4.0 Int. License
  • 4. 2019 DrTAD 4 Scripting & Extending Blender » Introduction ● General Information ● Links that are useful while writing scripts: ● Python.org – General information about Python. ● Blender Python API – Official API documentation. Use this for referencing while writ- ing scripts. ● API Introduction – A short introduction to get you started with the API. Contains ex- amples. ● Links that deal with distributing your scripts: ● Sharing scripts – Information on how to share your scripts and get them included in the official Blender distribution. ● Creating Add-ons – Add-ons are used to encapsulate and distribute scripts. ● Add-ons project – Project to maintain a central repository of extensions to Blender. ● https://docs.blender.org/manual/en/latest/advanced/scripting/introduction.html CC-BY-SA 4.0 Int. License
  • 5. 2019 DrTAD 5 Switch to Scripting Screen
  • 6. 2019 DrTAD 6 Scripting / Python Console Blender 2.79. Python Interactive Console 3.5.3 (default May 20 2017)
  • 7. 2019 DrTAD 7 Adding a Cube primitive bpy.ops.mesh.primitive_cube_add(radius=1, view_align=False, enter_editmode=False, location=(0, 0, 0), layers=(True, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False)) ●Source: Martin  Christen (2016). 3D  Computer  Graphics  with Python. „3D  Graphics  the Pythonic Way“. Institut  Vermessung  und  Geoinformation. Swiss  Python  Summit. Switzerland https://www.python-summit.ch/files/4-slides-martin-christen-sps16.pdf
  • 8. 2019 DrTAD 8 Appearing of the Cube primitive
  • 9. 2019 DrTAD 9 Adding a New 3D model Deleting the Cube primitive
  • 10. 2019 DrTAD 10 Adding a Cylinder primitive / R=1; Location X:0, Y:0, Z:0 bpy.ops.mesh.primitive_cylinder_add(radius=1, view_align=False, enter_editmode=False, location=(0, 0, 0), layers=(True, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False))
  • 11. 2019 DrTAD 11 Appearing of the Cylinder primitive
  • 12. 2019 DrTAD 12 Adding a new Cylinder primitive / R=4; Location X:8, Y:0, Z:0 bpy.ops.mesh.primitive_cylinder_add(radius=4, view_align=False, enter_editmode=False, location=(8, 0, 0), layers=(True, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False))
  • 13. 2019 DrTAD 13 Appearing of the Cylinder.001 primitive
  • 14. 2019 DrTAD 14 Adding a new Cylinder primitive / R=8; Location X:24, Y:0, Z:0 bpy.ops.mesh.primitive_cylinder_add(radius=8, view_align=False, enter_editmode=False, location=(24, 0, 0), layers=(True, False, False, ]False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False))
  • 15. 2019 DrTAD 15 Appearing of the Cylinder.002 primitive
  • 17. 2019 DrTAD 17 References ● Blender Software https://www.blender.org/ ● Tihomir Dovramadjiev PhD. Modern accessible application of the system Blender in 3D design practice. https://www.researchgate.net/publication/312033613_Modern_accessible_application_of_the_system_Blender_in_3D_design_practice Blender software. 2.79b Version. About, License & Development. DOI: 10.13140/RG.2.2.36167.75687 https://www.researchgate.net/publication/328677236_Blender_software_279b_Version_About_License_Development ● Blender User Manual.Release 2.78. Blender Community. Mar 08, 2017 Scripting & Extending Blender https://docs.blender.org/manual/en/latest/advanced/scripting/index.html ● Introduction https://docs.blender.org/manual/en/latest/advanced/scripting/introduction.html ● Scripting & Security https://docs.blender.org/manual/en/latest/advanced/scripting/security.html ● Add-ons ● https://docs.blender.org/manual/en/latest/addons/index.html ● Add-on Tutorial https://docs.blender.org/manual/en/latest/advanced/scripting/addon_tutorial.html CC-BY-SA 4.0 Int. License ● https://www.slideshare.net/TihomirDovramadjievP/rosen-vasilev-hristo-skulev-and-tihomir-dovramadjiev-optimization-of-design-opportunities-and-transfer-of-information-between- data-3d-graphics-program-blender-and-solidworks-cad-system ● https://www.youtube.com/watch?v=K0yb4sZ7B4g ● https://www.youtube.com/watch?v=F-cgCXg7Z3o ● https://www.youtube.com/watch?v=ssHiWpVuxTk ● Martin  Christen (2016). 3D  Computer  Graphics  with Python. „3D  Graphics  the Pythonic Way“. Institut  Vermessung  und  Geoinformation. Swiss  Python  Summit. Switzerland https://www.python-summit.ch/files/4-slides-martin-christen-sps16.pdf ● Patrik Malm. Scientific Visualization. Lecture 7: Other Visualization software. Centre for Image Analysis. Swedish University of Agricultural Sciences. Uppsala University ● Witold Jaworski. Programming Add-Ons for Blender 2.5 - version 1.01. ISBN: 978-83-931754-2-0. ● Apace OpenOffice http://www.openoffice.org/download/