Saturday, March 8, 2014

Reset

I felt that is not a good direction of making shape, so I reset the method.
This is the shape of Starfish, or something.


Tuesday, March 4, 2014

Step by step

To make more complicated shape, I'm writing the code.
This is a today's result.


Monday, March 3, 2014

Yeah!

I found a bug of the code. And I got a good result of this.
It's an object that growth.


Sunday, March 2, 2014

GMP5 first step

This is the first step of new code. Extruding first and set color to the faces.


Tuesday, February 18, 2014

Information about an Exhibition

I'll have an Exhibition of GMP works on March 10 - March 15 at Omotesando, Tokyo.



Think, think, and think...

I'm still thinking about the way to GMP5.
It's not easy for me, I believe I would be able to find its way.



Monday, January 6, 2014

A hint for Timeline?

I think it's one of the ideas for making timeline for an object, using 'frame'.
This code is changing the 'Ratio' of Decimate modifier from 0.005 to 1.0.

###
import bpy
import math

def my_handler(scene):
    cf = bpy.context.scene.frame_current
    r = (cf * 10)

    if (cf < 200):
        bpy.context.object.modifiers["Decimate"].ratio = cf * 0.005
    else:
        bpy.context.object.modifiers["Decimate"].ratio = 1.0
     
bpy.app.handlers.frame_change_pre.append(my_handler)

###