Skip to content

Instantly share code, notes, and snippets.

View CGArtPython's full-sized avatar
👋

CGArtPython

👋
View GitHub Profile
@CGArtPython
CGArtPython / BP_triangles_p2_s0.py
Last active September 6, 2020 23:46
Blender 3D Python Tutorial "Blender+Python: Make some triangles, Part 2 Step #0"
import math
import random
import bpy
def clean_scene():
"""
Remove all objects from the scene
"""
@CGArtPython
CGArtPython / BP_triangles_p2_s1.py
Last active September 6, 2020 23:47
Blender 3D Python Tutorial "Blender+Python: Make some triangles, Part 2 Step #1"
import math
import random
import bpy
def clean_scene():
"""
Remove all objects from the scene
"""
@CGArtPython
CGArtPython / BP_triangles_p2_s2.py
Last active September 6, 2020 23:47
Blender 3D Python Tutorial "Blender+Python: Make some triangles, Part 2 Step #2"
import math
import random
import bpy
def clean_scene():
"""
Remove all objects from the scene
"""
@CGArtPython
CGArtPython / BP_triangles_p2_s3.py
Last active September 6, 2020 23:48
Blender 3D Python Tutorial "Blender+Python: Make some triangles, Part 2 Step #3"
import math
import random
import bpy
import bmesh
def clean_scene():
"""
Remove all objects from the scene
@CGArtPython
CGArtPython / BP_triangles_p3_i1.py
Last active September 6, 2020 23:48
Blender 3D Python Tutorial "Blender+Python: Make some triangles, Part 3 Idea #1"
import math
import random
import bpy
import bmesh
def clean_scene():
"""
Remove all objects from the scene
@CGArtPython
CGArtPython / BP_triangles_p3_i2.py
Last active January 19, 2023 06:27
Blender 3D Python Tutorial "Blender+Python: Make some triangles, Part 3 Idea #2"
import math
import random
import bpy
import bmesh
def clean_scene():
"""
Remove all objects from the scene
@CGArtPython
CGArtPython / BP_triangles_p3_i3.py
Last active September 6, 2020 23:49
Blender 3D Python Tutorial "Blender+Python: Make some triangles, Part 3 Idea #3"
import math
import random
import bpy
import bmesh
def clean_scene():
"""
Remove all objects from the scene
"""
Author: Viktor Stepanov
Licence: MIT
The code for this art:
https://www.artstation.com/artwork/AqDyDq
Tested with Blender 2.92
"""
Author: Viktor Stepanov
Licence: MIT
The code for this art:
https://www.artstation.com/artwork/AqDyDq
This is a simplified version without materials.
"""
Author: Viktor Stepanov
Licence: MIT
The code for this art:
https://www.artstation.com/artwork/L3oVvv
Tested with Blender 2.93