Skip to content

Instantly share code, notes, and snippets.

@eyemono-moe
eyemono-moe / memo.md
Last active January 12, 2023 22:44
VSCodeカラーテーマ作成メモ置き場
@eyemono-moe
eyemono-moe / icosphere.py
Last active April 29, 2022 07:13
Script to create an Ico Sphere in Blender.
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],