Hello World / plɹoM ollǝH

Programmers Live in Vain

2015-06-30から1日間の記事一覧

Node Graphでテクスチャ生成

Substance買うお金無い Python # conding: utf-8 import math from PIL import Image PI = 3.1415926536 # 正弦 class Sin: def __init__(self, in_x): self.x = in_x def __call__(self): return math.sin(self.x()) # 余弦 class Cos: def __init__(self, …