The Timemachine

Nikolaus Gradwohl2011-11-23T06:18:14+00:00

Todays sketch features "The Timemachine" by H.G. Wells. I love the story and I love the idea of messing with the flow of events in a temporal context - so I downloaded the text from project-gutenberg and made a sketch that displays random lines of the text and then makes them fade into non-existense

click here to start the sketch or download the sourcecode.

The Timemachine

have fun

Nikolaus Gradwohl2011-11-22T05:49:12+00:00

A slightly hedonistic, but very wise motto for today ...

have fun!

parallel worlds

Nikolaus Gradwohl2011-11-21T05:33:51+00:00

parallel worlds

Hidden Workbench in a Shelf

Nikolaus Gradwohl2011-11-20T10:39:02+00:00

Since space is very rare in my flat I made a small workbench that is hidden in an ikea-shelf. I combined a folding table and an ikea shelf. Then I added some small cabinets with drawers and an adjustable lamp. I had to add some heavy stuff to the bottom of the shelf to prevent it from toppling over. Old computer displays and scanners that havent been ripped for parts yet are very convinient :-)

Now I have a workbench that's big has a decent light and can be put away very easy when not in use

3D mushrooms in processing

Nikolaus Gradwohl2011-11-16T06:06:17+00:00

My mushroom-drawing from yesterday inspired me to do some 3D coding in processing again so I made a rotating 3D version of my purple mushrooms

click here to start the sketch or download the sourcecode.

mushrooms

Mushrooms

Nikolaus Gradwohl2011-11-15T09:07:48+00:00

I've been drawing again - this time some purple mushrooms

colorchanging, pulsating tunnel-effect animation

Nikolaus Gradwohl2011-11-14T06:17:26+00:00

I made a pulsating, colorchanging tunnel-effect. Currently the pulse is generated using an Square-Animator from my animator library, but I think I will hook up minim to make it into an adui visualizer eventually

click here to start the sketch or download the sourcecode.

animated tunnel-effect

Animator Library - 2nd Alpha version

Nikolaus Gradwohl2011-11-13T15:47:31+00:00

I gave some more code and love to my animator-library for processing and I think it has improved enough to release a new version

Animators can now be added to a Sequence

Sequence s = new Sequence();
s.addAnimator( new LinearAnimator( 500,100,200 ));
s.addAnimator( new SquareAnimator( 200, 200, 100 ));

the sequence can be started using s.start() and the value is fetched using s.get()

A simpler form of defining sequences is to use the string-parser

the same Sequence as above can be defined using

Sequence s = Sequence.parse( "S100,L500->200,Q200->100");

The animators are separated with a comma, each block starts with a letter and one or two parameter

  • "S" is the start value
  • "L" defines a LinearAnimator the first integer defines the time the second one the target value
  • "Q" defines a SquareAnimator the first integer defines the time the second one the target value
  • "R" defines a RootAnimator the first integer defines the time the second one the target value
  • "D" defines a Delay in milliseconds

I also added a bunch of new Examples that show how to use the new features

As always feedback is very welcome!

Simple Example Sequence Example Parser Example Clock Example

hiding some screws on my Chair

Nikolaus Gradwohl2011-11-12T11:48:29+00:00

I got a new chair from ikea which came with armrests. I didn't want to screw them on the chair, because I generally don't like arm-rests on my chairs and they don't fit under my desk. Not mounting the arm-rests left some blank nuts which didn't look very pretty.

3D-printer to the rescue - I printed some caps to hide the nuts

You can download the scad file or the stl file If you need an example or happen to have the same chair

without cap

with cap

trigonometric plasma

Nikolaus Gradwohl2011-11-11T06:12:25+00:00

This is processing sketch that generates a plasma effect using sine and cosine functions

click here to start the sketch or download the sourcecode.

plasma