Inspired (for the second time) by James Paterson showing off Amit Pitaru’s stuff at Flash on the Beach last month, I did this on the train to work this morning (yeah, I’m braggin’):
Actually, that’s just a screenshot of something I drew with what I made.
View the full post to play with the app itself:
Click to draw, press any key to clear.
[kml_flashembed movie=”http://www.bit-101.com/blog/wp-content/uploads/2008/10/spinny.swf” height=”800″ width=”800″ /]
I’ve done this kind of thing a few times before. A lot more advanced even. This was fun just to bang off on the train. You’ll need Flash 10, but interestingly, it doesn’t use any Flash 10 3D display object stuff. It’s all hand coded lineTo’s. But I did use Vectors instead of Array for speed, as well as Vector3D objects to hold the 3D points. All timeline code. Real crappy inefficient done-on-the-train code. I wasn’t even going to post the code, but I know some of you guys will freak out if I dare post a SWF without releasing the code. 😉
[as]var holder:Sprite = new Sprite();
holder.x = 400;
holder.y = 400;
addChild(holder);
var angleY:Number = -.05;
var points:Vector.
var mouseIsDown:Boolean = false;
stage.addEventListener(MouseEvent.MOUSE_DOWN, onMouseDown);
stage.addEventListener(KeyboardEvent.KEY_UP, onKeyUp);
function onKeyUp(event:KeyboardEvent):void
{
points.length = 0;
}
addEventListener(Event.ENTER_FRAME, tick);
function tick(event:Event):void
{
draw();
}
function onMouseDown(event:MouseEvent):void
{
mouseIsDown = true;
stage.addEventListener(MouseEvent.MOUSE_UP, onMouseUp);
}
function onMouseUp(event:MouseEvent):void
{
points.push(null);
mouseIsDown = false;
stage.removeEventListener(MouseEvent.MOUSE_UP, onMouseUp);
}
function draw():void
{
if(mouseIsDown)
{
points.push(new Vector3D(holder.mouseX * 1.5, holder.mouseY * 1.5, 0));
}
holder.graphics.clear();
var cos:Number = Math.cos(angleY);
var sin:Number = Math.sin(angleY);
for(var i:int = 0; i < points.length; i++)
{
var p:Vector3D = points[i];
if(p != null)
{
var x1:Number = p.x * cos - p.z * sin;
var z1:Number = p.z * cos + p.x * sin;
p.x = x1;
p.z = z1;
}
}
for(i = 0; i < points.length; i++)
{
if(points[i] != null)
{
var scale:Number = 400 / (400 + points[i].z + 200);
holder.graphics.lineStyle(2, 0, scale);
if(i == 0)
{
holder.graphics.moveTo(points[0].x * scale, points[0].y * scale);
}
else
{
holder.graphics.lineTo(points[i].x * scale, points[i].y * scale);
}
}
else
{
i++;
if(i < points.length)
{
scale = 400 / (400 + points[i].z + 200);
holder.graphics.moveTo(points[i].x * scale, points[i].y * scale);
}
}
}
}[/as]
Oh, did I mention I coded this on the train on the way to work? The Green Line from Woodland to Brookline Village if you're from Boston. 🙂
And if you make something cool from this and go viral and make tons of money, I will post a very mean blog post about you. Unless you give me a cut.
Fun! A bit of optimisation and a gallery and I think it’d be complete 🙂
I do some of my best work on the train. The Brighton to London line is particularly good after 10. Always a challenge to see if I can finish something in the ~1 hour it takes to get there.
Aha – the green line. That explains it – you probably had like 2 hours to work on this…or more, if anything cought on fire…
Nice work though – and a great idea!
Great work Keith!
Maybe on the way home you could add midi-out functionality in the style of Amit Pitaru’s one 🙂
Fun, as usual. I really enjoy the designs that I can make with it.
I actually took some video of James’ presentation, and the part where he shows off the 3D sound generating tool can be watched here: http://www.vimeo.com/1882508
Very cool, Keith!
What a fun little toy. It would be very interesting if the user had control over rotation.
Just like the tornado outside my house. It feels like a lot of wind.
Great stuff.
this is awesome! great idea & fun to play with.
how dare you think about not posting the code!!! 😛
what’s exactly “awesome” about this ? it’s not new, it’s not good looking, it’s not groundbreaking, not even close to that..By publishing such stuff you give Jonathan Harris more opportunities to moan about us flashers. Sorry, i can’t appreciate this one.
Igor. No, it’s not new. I think it’s kind of good looking. No, it’s not groundbreaking, not even close. I could care less what Jonathan Harris says about it. I did it on the train to work. I could have listened to some music or read the newspaper instead. Or I could have kept it to myself and not shared it, fearing Jonathan Harris might moan about it. Or I could have worked on it for the next 8 years, trying to make it a masterpiece and put a “message” into it that would make people cry 25 years from now.
But I made it and had fun making it. I’m not claiming it’s awesome. But if someone else thinks so, who are you to say it’s not? I find that attitude to be elitist. If something is not groundbreaking, it shouldn’t be shared? Should be hidden away in shame? Sorry, but I’m going to be continuing to release non-groundbreaking, non-masterpiece, experimental tinkering pieces for as long as it makes me happy to do so. If nobody appreciates them, I’ll still be doing it, because for me, it’s better than watching American Idol.
Good for you Keith. Ignore Igor. There are many thousands of people who appreciate your generosity.
Igor blows.
Ok, I can’t stay silent on this. The whole idea of expecting masterpieces is just ridiculous. We don’t have the luxury of spending all our time in a cafe, or setting up our easels in front of a beautiful landscape and painting side by side. We explore an all new media, and social interaction.
These experiments and doodles exist in an artistic environment unlike any before. In many ways, the way they are shared is the masterpiece. Not only are we sharing with each other as artists, but with potential artists who haven’t found their voice yet.
In 25 years, we may very well cry at the beauty of what we all do today. All, without sending any non-biodegradable balloons into the environment 😉
Igor – if you want to say dribble like this – then you best be able to pony up and show your groundbreaking materpieces that will change my life and make everything I’ve known to this point in time inconsequential. Otherwise… who are you to say this? You point the finger at someone who consistently contributes to the community in a meaningful way – and… what have you done about what you are criticizing someone for?
If it wasn’t for small little spikes of “look what i made” , no one would be making anything or sharing anything.We’d all be taking yoga in the hopes of the big goal of being able to bury our faces into our own laps and never leave the house again.
I don’t want to live my life remembering only 4 or 5 things that say something and mean something to me. I want to live my life, having something that does that every day – even if its only in a whisper and even if I’m unable to fully appreciate it till much later.
Jeebus KP. Keep trucking. I like this stuff. Why? Not cos its some amazing piece of work. But because it gives me insight to who you are. It reminds me to do more, more often.
^ What Lee Brimelow said ^
Very cool Keith, as always, thanks for sharing.
I made something very similar using PV3D where you can draw in 3D and zoom and rotate around, also inspired by Amit’s drawing app – except if you have a pair of red-blue 3D glasses handy you can see it in 3D! http://www.neave.com/anaglyph/