Categories
Grumm Urban papercraft

Zombie Grumm at Thunder Panda

One of my inspiration to create Grumm was Sjors Trimbach with Brickboy. Back then I visited his site weekly and after a while I noticed that there were no more updates of new Brickboys.
Some time later I found Brickboys creations on sites of designers who had created a custom Brickboy. Sjors wrote about it (can’t find that article anymore) saying that he was too busy, and that designers started taking matter into there own hands, that the designers couldn’t wait any longer and publishing there own Brickboys on there own sites…. (if I remember the article correctly, Sjors didn’t mind…)

When I red this, I couldn’t image that happening to me…..
Well for everything there is a first time: I’m too busy, and don’t have enough time to put everything on my site and Eric Wiryanata’s took maters in his own hands.
Can’t blame him…

But it’s a nice version of Grumm and in time I will put him on my site:

Visit Zombie Grumm at Thunder Panda and there is a download link over there.

Categories
Design Urban papercraft

Urban papercraft: Jins Studio22

This is a strange entry in the Urban papercraft series:
jins studio22cool pet rangeland paper model and toy design

I normally would write about this project: you can adopt a papermodel for the right amount of cash. Especially the fact that you have to pay for a papermodel is something that I don’t like, but there is are free models, and a blank version…

Here is the free version in the download section

Here the examples:
JeansPumpkinSkeleton ASkeleton BXMas AXMas BXMas CSakura
and my personal favorite Nian:
Nian

and of course a blank template named P.I.Y.:
P.I.Y.

πŸ™‚

[via paperkraft.blogspot.com]

Categories
AS3 Custmm Grumm Extending Flash Grumm Urban papercraft

Custmm Grumm – AI 2 Array

Another experiment towards Custmm Grumm. This time my task was to export/import an Illustrator file to Flash…

Yeah, yeah; I know: you say “import to stage” … correct! πŸ˜‰
But what I need is the shape converted to code (coordinates in the x-direction and y-direction)..
Ha, you stopped grinning!

Well the first part is correct.
You need to import the file to the stage and give every imported shape it’s own layer.
This is something that you don’t want to do by hand (I didn’t want to πŸ˜‰ ), so I wrote a jsfl that fixes that for you (read my post about it here: object-to-layer-jsfl)

After that you need to extract the values (x and y-positions form the corners of the shapes) of the files. Some thing, you don’t want that to do by hand: I have written a jsfl who does that. (read more about that here: shape-2-array-jsfl )

If you use these two scripts, you get: all imported shapes in different layers, and you can extract all values.
Example of the array:
[as]
var shapeArrayz:Array = new Array ();
shapeArrayz[0] = [[20.05,169.5,0] , [62.425,169.5,1] , [104.8,169.5,2] , [104.8,169.5,0] , [104.8,211.85,1] , [104.8,254.2,2] , [104.8,254.2,0] , [62.425,254.2,1] , [20.05,254.2,2] , [20.05,254.2,0] , [20.05,211.85,1] , [20.05,169.5,2]];
// etc…
[/as]
This array off point can be used to generate the shape you just “traced”.

Generated shapes from an Array

This script (below) is used to generate the points (every line has 3 points, the beginning, the end and one inbetween), and the generated shape on the right side (no points, only the shape):
[as]
var shapeArray:Array = [];

// visualize the points
function createPoints2 (_pointArray:Array) {
shapeArray = [];
var point:MovieClipInLibraryWithLinkageName;
for (var i=0; i<_pointArray.length; i++) {
point = new MovieClipInLibraryWithLinkageName();
point.x = _pointArray[i][0];
point.y = _pointArray[i][1];
var switchExpression:uint = _pointArray[i][2];
switch (switchExpression) {
case 0 :
//trace (0);
point.alpha = .5;
shapeArray.push ([_pointArray[i][0],_pointArray[i][1]]);
break;
case 1 :
//trace (1);
point.scaleX = point.scaleY = .5;
break;
case 2 :
//trace (2);
point.alpha = .5;
point.scaleX = point.scaleY = .3;
break;
default :
trace ("Not 0, 1, or 2");
}
addChild (point);
}

}

// draw the new extracted image
function drawArray (_arr:Array) {
// trace ("drawArray ");
var _shape:Shape = new Shape();
_shape.graphics.lineStyle (1, 0x333333, 1);
_shape.graphics.beginFill (0xcccccc);
_shape.graphics.moveTo (_arr[0][0], _arr[0][1]); // starting point
for (var i=1; i<=_arr.length; i+=3) {
_shape.graphics.curveTo (_arr[i][0], _arr[i][1] , _arr[i+1][0], _arr[i+1][1]);
// _shape.graphics.lineTo (_arr[i+1][0], _arr[i+1][1]);
}
_shape.graphics.endFill ();
this.drawContainer_mc.addChild (_shape);
}

// jumpstart everything
function init (){
for (var j=0; j<shapeArrayz.length; j++) {
// trace(shapeArrayz[j])
createPoints2 (shapeArrayz[j]);
drawArray (shapeArrayz[j]);
}
}
init ();

[/as]

Update #1: I previously used point_mc in the code. That was a movieClip in the library with a linkage name. I changed it in the code, I hope that helps.

Eventually I will use the points, and generated shapes to modify the shape (move a point, create a new shape) and/or to add points.

Categories
Design Drukk Urban papercraft

Drukks: the Selfish Series – DrukkGrumm

The Selfish Series and the (designers) Pusher Series now have there own homepage!

Today I present the last Drukk model in the Selfish Series: DrukkGrumm.

Drukks: the Selfish Series

Drukk is a simple papertoy (easy to build, easy to customize) with moving parts (you could call it a paper automata).

Download DrukkGrumm:

(The .ZIP file contains a .PDF)

Do you feel inspired by this model? Create your own Drukk, send it to me, and be part of the first “Pusher Series”.
Download the blank Drukk template:

(The .ZIP file contains a .PDF)

I have created 4 models to get you all inspired.
Every Wednesday, for 4 weeks long, I will post a new Drukk from the Selfish Series.
This is the last model from a 4 models series.

All models from the first Selfish Series are released!
You can download them here:
DrukkChubby
Burdd
Speakurr
DrukkGrumm

and don’t forget: You can create a Drukk too! You can participate in the Pusher Series (just download the blank template and get busy).

On a more personal note.
I love this model: nice colors, nice attitude. So if you just want to download 1 model, download this model

Categories
Design Drukk Urban papercraft

Drukks: the Selfish Series – Speakurr

The Selfish Series and the (designers) Pusher Series now have there own homepage!

Today I present the third Drukk model in the Selfish Series: Speakurr.

Drukks: the Selfish Series

Drukk is a simple papertoy (easy to build, easy to customize) with moving parts (you could call it a paper automata).

Download Speakurr:

(The .ZIP file contains a .PDF)

Do you feel inspired by this model? Create your own Drukk, send it to me, and be part of the first “Pusher Series”.
Download the blank Drukk template:

(The .ZIP file contains a .PDF)

I have created 4 models to get you all inspired.
Every Wednesday, for 4 weeks long, I will post a new Drukk from the Selfish Series.
This is the third model in a series of four.

All models from the first Selfish Series are released!
You can download them here:
DrukkChubby
Burdd
Speakurr
DrukkGrumm

and don’t forget: You can create a Drukk too! You can participate in the Pusher Series (just download the blank template and get busy).

On a more personal note.
I always wanted to do something with speakers… so here it is.

Categories
Design Drukk Urban papercraft

Drukks: the Selfish Series – Burdd

The Selfish Series and the (designers) Pusher Series now have there own homepage!

Today I present the second Drukk model in the Selfish Series: Burdd.

Drukks: the Selfish Series

Drukk is a simple papertoy (easy to build, easy to customize) with moving parts (you could call it a paper automata).

Download Burdd:

(The .ZIP file contains a .PDF)

Do you feel inspired by this model? Create your own Drukk, send it to me, and be part of the first “Pusher Series”.
Download the blank Drukk template:

(The .ZIP file contains a .PDF)

I have created 4 models to get you all inspired.
Every Wednesday, for 4 weeks long, I will post a new Drukk from the Selfish Series.
This is the second model from a series of 4.

All models from the first Selfish Series are released!
You can download them here:
DrukkChubby
Burdd
Speakurr
DrukkGrumm

and don’t forget: You can create a Drukk too! You can participate in the Pusher Series (just download the blank template and get busy).

On a more personal note.
My girl “complained” that the skins that I create for myself or others are never cute! That’s correct! So now a cute little yellow bird πŸ˜‰

Categories
Design Drukk Urban papercraft

Drukks: the Selfish Series – DrukkChubby

The Selfish Series and the (designers) Pusher Series now have there own homepage!

Today I present the first Drukk model in the Selfish Series: DrukkChubby

Drukks: the Selfish Series

Drukk is a simple papertoy (easy to build, easy to customize) with moving parts (you could call it a paper automata).

Download DrukkChubby:

(The .ZIP file contains a .PDF)

Do you feel inspired by this model? Create your own Drukk, send it to me, and be part of the first “Pusher Series”.
Download the blank Drukk template:

(The .ZIP file contains a .PDF)

I have created 4 models to get you all inspired.
Every Wednesday, for 4 weeks long, I will post a new Drukk from the Selfish Series.
This is the first model in a series of 4.

All models from the first Selfish Series are released!
You can download them here:
DrukkChubby
Burdd
Speakurr
DrukkGrumm

and don’t forget: You can create a Drukk too! You can participate in the Pusher Series (just download the blank template and get busy).

On a more personal note.
My girl “complained” about the skins that I create for my own models and the customs that I create: and she is correct, my skins are never cute or lovely… So here my first cute design πŸ˜‰

Categories
Design Drukk Urban papercraft

Drukks: the Selfish Series

A while back I mentioned that I was working on a new papertoy called Drukk

drukk: new papertoy by Matthijs Kamstra aka [mck]

Drukk is a simple papertoy (easy to build, easy to customize) with moving parts (you could call it a paper automata). So if you are not in the mood to build/customize a more complex model like Grumm you should give Drukk a try.

I have been working on 4 models to get you all inspired to build and create new Drukks πŸ˜‰ .

Me, Myself And I

Every Wednesday, for 4 weeks long, I will post a new Drukk from the Selfish Series.

But today I’ll start this Selfish Series with a blank Drukk template (because every really good papertoy series has a blank version) which will be used in the “Pusher Series”:

(The .ZIP file contains a .PDF)

Special thx to some of the friendly people at nicePaperToys who gave me feedback about the build and the model itself.

Tomorrow more….

Categories
Design Urban papercraft

Grizza – a SIZZA custom

I while back I created a custom for SIZZA and I called it GRIZZA.

Why I never posted about it on my blog (well I didn’t like the photos I took of it πŸ˜‰ ), I don’t know… But I did mention it on
Nice Paper Toys so you can find some photo’s and comments there.

I created a promotional poster for Grizza:
Grizza a SIZZA custom by Matthijs C. Kamstra aka [mck]

And few days back Nick posted a download link for GRIZZA, and today he send me an update: 100+ downloads! πŸ™‚ Which seems to be a lot in a short time.
Perhaps it helps that papercraftparadise also wrote about it…

For all the people who wants to download GRIZZA visit the blog of Nick Knite the home of SIZZA

Do you want to know more about SIZZA or Nick Knite, read my post or visit Nick’s site.

Update #1 (Monday 9 June 2008 ): I can’t help myself: I know this is not a contest, but I have beaten Dino-Sizza and Artdenka-design in number of downloads…. Next one in line is NiceBunny (181 downloads)
Update #2 (Wednesday 11 June 2008 ): πŸ˜‰ I know: I’m a sad little man, NiceBunny is passed and Lil’ SIZZA is next (209 downloads). But way think small (it just another 3 downloads) so next one in line is SIZZA – Project Detonate Custom (currently 276) ….. πŸ™‚ Nick mentioned that the numbers of visitors have increased! Thx for downloading this custom!
Update #3 (Monday 16 June 2008 ): Currently Grizza is downloaded 309 times πŸ˜€ …. I have passed SIZZA – Project Detonate Custom. And now it’s time for the big guns: GHOST SIZZA from Matt Hawkins (325 download) and SIZZA – Marshall Alexander custom (416 download). I guess that it will difficult to beat 400+ series, but time will tell. Thx once again for downloading this custom this much!
Update #4 (Monday 7 July 2008 ): Currently Grizza is downloaded 511 times πŸ˜€ …. I asked Nick if there is something to beat any more… It’s the design made by Team Steven (568 downloads) which is more then 1 year online and the original SIZZA.
Categories
Design Flash Open source / Freeware

Print 2 PDF

I have been using this for some time now: sometimes you need to export something generated in Flash to a (vector) file. Another name for this post could be: Flash2PDF, Flash to PDF, SWF2PDF, SWF to PDF, Export2PDF, Export to PDF….. you catch my drift πŸ™‚
And the solution is very simple: just print a .PDF!

What is PDF?

Portable Document Format (PDF) lets you capture and view robust informationβ€”from any application, on any computer system.

from the creators: Adobe

Read the explanation from wikipedia

How does it work?

Windows
You need to download (and install) a program: PDFCreator. PDFCreator is opensource: which means a lot, but the only thing you need to know for now is that it’s free.

PDFCreator is a free tool to create PDF files from nearly any Windows application.

After you install it, you can print PDF files from every program: print a document, choose the printer with the name “PDF Creator” and print.
Print screen PDF Creator

Mac OSX
Apple doesn’t need a special program for that; it’s already build in: read more about that here
(can’t tell you much about Mac… I own one, but it’s old so I don’t work on it anymore)