Skip to content

Instantly share code, notes, and snippets.

Avatar
🤒
Out sick

detteiu8383

🤒
Out sick
View GitHub Profile
@detteiu8383
detteiu8383 / memo.md
Last active January 12, 2023 22:44
VSCodeカラーテーマ作成メモ置き場
View memo.md
@detteiu8383
detteiu8383 / icosphere.py
Last active April 29, 2022 07:13
Script to create an Ico Sphere in Blender.
View icosphere.py
import bpy
def icosphere(recursion_leve=0):
# create 12 vertices of a icosahedron
t = (1 + 5**0.5)/2
verts = [
[-1, t, 0], [1, t, 0], [-1, -t, 0], [1, -t, 0],
[0, -1, t], [0, 1, t], [0, -1, -t], [0, 1, -t],