Here’s a rough diagram of the drawing machine architecture that I have in mind. I’m building the components from bottom to top.
I moved on from the brush stroke and started to work on a set of drawing functions that incorporate the stroke.
Currently coverage:
- moveTo,
- lineTo,
- rect,
- circle
the moveTo function is necessary since the dynamics of the brush motion would depend on the last stroke, both position and speed.
currently i’m working on the curve function, it’s quite a challenge to get the brush movement natural enough and calculation is also dependent on the stroke length and brush size too. once this is done I think all basic drawing functions are covered for now and I will move onto the composition stage.
this is a simple test:
stroke update from Liangjie Xia on Vimeo.


Post a Comment