Tuesday, February 28, 2012

Summary of Everything!

I asked a bunch of my friends to: "Sum up as many subjects as you can with as few words as possible but with the most complete description." Submit your answers as a response!

Monday, February 27, 2012

Star Fall Demo with QSquiggle

Here's a quick demo of QSquiggle's use.

Quantum Squiggle 2 - QSquiggle Constructor

It's all "back end" stuff, but I made a constructor for KineticJS to create a general bezier regular shape. I should really include an epilepsy warning. Link to Quantum Squiggle Demo #2

Shape can be created with:

var squiggle = new Kinetic.QSquiggle({
x: stage.width / 2,
y: stage.height / 2,
points: 10,
innerRadius: 150,
outerRadius: 250,
fill: "yellow",
stroke: "black",
strokeWidth: 3
});
//Access this shape like a typical object!
squiggle.fill = "blue";
Here's a Demo using QSquiggle.

Quantum Squiggle - KineticJS Demo

I apologize in advance if the pure randomness gives anyone a seizure. This was built with KineticJS as a Demo for people to play with. I plan on evolving this further into something that could be used as a plugin. You can drag the shape, but not much else right now.
Link to Quantum Squiggle Demo #1
Link to Quantum Squiggle Demo #2