Animated Colour Wheel

Posted on: March 13th, 2012 by admin

Colur Wheel

This is a simple animated Colour Wheel which I have put together for my students. It’s as basic as it can get while still actually saying something, but had some fun putting it together. Click on the image to view the animation.

Cycles Rendering in Blender

Posted on: November 22nd, 2011 by admin

Blender Cycles demo

A quick demo of the new Blender cycles rendering engine. Still to be implemented into the official release, this new rendering engine provides much more realistic effects and can alternate between using either the CPU or GPU for rendering (essentially you choose whichever is more powerful in your machine). Also gives live full-render updates in the viewport, however a high-end machine is required to make this feature useful. Blender Builds with the cycle renderer can be obtained from http://graphicall.org/

Click here, to see a larger version of the image & a little experiment which blends 2 renders to create the illusion of a changing focal depth. Needs Flash Player 11 as images are using GPU acceleration.

Flash Player discontinued on Mobile Devices

Posted on: November 10th, 2011 by admin

Adobe today announced the end of Flash Player on Mobile Devices.

Although the Desktop version will still be developed, what with Microsoft’s plug-in free Windows 8, it is hard to imagine this remaining the case for too much longer. I doubt anyone was developing Flash content specifically for mobile browsers anyhow, but the difference is why would you now develop anything requiring Flash Player for desktop Browsers, when you know you would have to rebuild it using some other platform for mobile browsers. In fact the only thing I can now see keeping Flash Player on the web, is the huge number of gaming sites that a dependent on the plugin.

So Adobe is putting its faith in Apps for mobile using the AIR platform (which is still Flash). I still believe Flash, through AIR, has the potential for a healthy future. It has not exactly taken the desktop world by storm but AIR is proving much more successful on mobile, so they are effectively putting all of the remaining eggs in the one basket. Will it be enough?

Ultimately this decision simplifies the whole development landscape in a number of ways, so while I am a little sad at the news, I’m glad that this ridiculous Flash vs HTML 5 debate can finally be put to bed.

Flint – Stage 3D accelerated Particles

Posted on: October 30th, 2011 by admin

Just discovered Flint for generating particles. Flint contains an away3d 4 renderer, which means we can have stage 3d accelerated particles.

See the demo.

And here is the code for this demo. To get this working you will need the FLINT source, and the latest Away3D 4 (broomstick) source.


package
{
import away3d.cameras.Camera3D;
import away3d.containers.ObjectContainer3D;
import away3d.containers.Scene3D;
import away3d.containers.View3D;
import away3d.debug.AwayStats;
import away3d.lights.PointLight;
import away3d.materials.BitmapFileMaterial;
import away3d.materials.ColorMaterial;
import away3d.primitives.Cube;
import away3d.primitives.Plane;
import away3d.primitives.Sphere;

import flash.display.Sprite;
import flash.events.Event;
import flash.events.MouseEvent;
import flash.geom.Point;
import flash.geom.Vector3D;

import org.flintparticles.common.actions.Age;
import org.flintparticles.common.counters.Steady;
import org.flintparticles.common.displayObjects.RadialDot;
import org.flintparticles.common.initializers.ImageClass;
import org.flintparticles.common.initializers.Lifetime;
import org.flintparticles.common.initializers.ScaleImageInit;
import org.flintparticles.integration.away3d.v4.A3D4Renderer;
import org.flintparticles.integration.away3d.v4.initializers.A3D4CloneObject;
import org.flintparticles.threeD.actions.DeathZone;
import org.flintparticles.threeD.actions.Move;
import org.flintparticles.threeD.actions.RandomDrift;
import org.flintparticles.threeD.emitters.Emitter3D;
import org.flintparticles.threeD.initializers.Position;
import org.flintparticles.threeD.initializers.Velocity;
import org.flintparticles.threeD.zones.BoxZone;
import org.flintparticles.threeD.zones.LineZone;
import org.flintparticles.threeD.zones.PointZone;

[SWF(width="1280", height="720", frameRate="60", backgroundColor="0x000000")]
public class SnowStorm extends Sprite
{

//engine
private var view:View3D ;
private var scene:Scene3D;
private var camera:Camera3D;

// materials
private var groundMat:ColorMaterial;
private var wallMat:ColorMaterial;

//lights
private var mainLight:PointLight;

//objects
private var ground:Plane;
private var cube:Cube;
private var player:Cube;

//particles
private var partContainer:ObjectContainer3D;
private var emitter:Emitter3D;
private var renderer:A3D4Renderer;
private var zone:BoxZone;
private var position:Position;
private var zone2:PointZone;
private var velocity:Velocity;
private var move:Move;
private var boxZone:BoxZone;
private var deathZone:DeathZone;
private var scaleImage:ScaleImageInit;

// other
private var isMouseDown:Boolean;

public function SnowStorm()
{
initEngine();
initLights();
initMaterials();
initObjects();
initParticles();
initListeners();
}

private function initEngine():void{

scene = new Scene3D();
camera = new Camera3D();

view = new View3D();
view.antiAlias = 4;
view.camera = camera;
view.scene = scene;
view.backgroundColor = 0x000000;
this.addChild(view);

camera.z=-250;
camera.y=50;

addChild(new AwayStats(view));
}

private function initLights():void{

mainLight = new PointLight ();
mainLight.x = 1000;
mainLight.y = 5000;
mainLight.z = -2000;
scene.addChild(mainLight);

}

private function initMaterials():void{

groundMat = new ColorMaterial (0xffffff,1);
groundMat.lights = [mainLight];
wallMat = new ColorMaterial(0xff3300,1);
wallMat.lights = [mainLight];

}

private function initObjects():void{

ground = new Plane (groundMat,5000,5000,1,1);
ground.x=0;
ground.y=0;
ground.z=0;
scene.addChild(ground);

cube = new Cube (wallMat,100,100,100,1,1,1);
cube.x=0;
cube.y=50;
cube.z=0;
cube.rotationY=30;
scene.addChild(cube);
// the player mesh. This mesh is technically not required as it is not in view of the camera, and does nothing. It is included for future collision detection, but you can remove all refernence to player if you like.
player = new Cube (wallMat,50,50,50,1,1,1);
player.x = camera.x;
player.y = camera.y-25;
player.z = camera.z+250;
scene.addChild(player);

partContainer = new ObjectContainer3D();
partContainer.x=0;
partContainer.y=500;
partContainer.z=0;
scene.addChild(partContainer);

}
private function initParticles():void{

//create emitter
emitter = new Emitter3D();

//initialize particle count
emitter.counter = new Steady(100);

//particle material
var particleMaterial:ColorMaterial = new ColorMaterial( 0xffffff,1);
var sphere:Sphere = new Sphere( particleMaterial, 2, 6, 6 );
emitter.addInitializer( new A3D4CloneObject( sphere, true, 400 ) );

//emission zone
zone = new BoxZone(5000,50,5000,new Vector3D(0,0,0));
position = new Position(zone);
emitter.addInitializer(position);

//velocity zone
zone2 = new PointZone(new Vector3D(0,-50,0));
velocity = new Velocity(zone2);
emitter.addInitializer(velocity);

//particle life
emitter.addInitializer(new Lifetime(10)); // this is the abbreviated way of using the addInitializer method

// add actions
move = new Move();
emitter.addAction(move);

//this is the abbreviated way of using the addAction method
emitter.addAction(new Age());
emitter.addAction(new RandomDrift(50,50,50));

// specify renderer
renderer = new A3D4Renderer(partContainer);
renderer.addEmitter(emitter);

//start the emitter
emitter.start();

}
private function initListeners():void{

this.addEventListener(MouseEvent.MOUSE_DOWN,onMdown);
this.addEventListener(MouseEvent.MOUSE_UP,onMup);
this.addEventListener(Event.ENTER_FRAME, loop);
}

private function onMdown(e:MouseEvent):void{
isMouseDown = true;
}
private function onMup(e:MouseEvent):void{
isMouseDown = false;
}

private function loop (e:Event ):void{

mouseMove();
view.render();

}

private function mouseMove():void{

// Tilt the camera up/down based on mouse position.
camera.rotationX -= -( mouseY - ( stage.stageHeight*0.5 ) ) * 0.005;

// spin the camera around based on mouse position.
camera.rotationY += ( mouseX - stage.stageWidth*0.5 ) * 0.005;
player.rotationY = camera.rotationY;
// if the mouse is down then move forward.
if( isMouseDown ) {
var xComponent:Number = Math.sin( camera.rotationY * Math.PI / 180 ) * 10;
var zComponent:Number = Math.cos( camera.rotationY * Math.PI / 180 ) * 10;
camera.position = new Vector3D(
camera.x + xComponent, camera.y, camera.z + zComponent );
player.position = new Vector3D(    camera.x + xComponent, camera.y-25, camera.z + zComponent )

}
}
}
}

New remixes at sista4tune

Posted on: April 21st, 2011 by admin

2 track on the have been remixed & polished @ sista4tune. Head on over and have a listen to “Call Me” and “Doin’ It Right”.

sista4tune on-line

Posted on: March 22nd, 2011 by admin

The website for sista4tune is now up & her music can be listened to directly from the website. This site incorporates CSS, jQuery & Flash to create a simple single page experience. Streamlined design & integration of technology allowed for a low-cost solution for this talented young artists to get a promotional site up and running.

sista4tune website
sista4tune website.
Near future updates will include additional tracks &  iTunes integration.

New site Layout

Posted on: February 22nd, 2011 by admin

A new layout for subcultural!

This was mostly done as an exercise for my GSIT students, as they are learning how to create custom WordPress themes.

Still a bit of fine-tuning involved and one problem I have yet to overcome. If you are on a page where the left sidebar is longer than the main content area, then the sidebar overflows into the footer. The normal “clear:both;” method is not working…? Suggestions are most welcome!!!

  • daniel radcliffe shirtless 2009 harness
  • david cook kimberly caldwell photos corsa
  • dunk crayon
  • christine taylor author pockets
  • rainn wilson religion oldest
  • sigourney weaver dj mick sabrina
  • jerry seinfeld 100 porsches shanty
  • campbell scott univ of missouri macaroni
  • mike epps tour dates puzzle
  • marina sirtis in caligula dialer
  • mark owen bit torrents seeing
  • anne reid sex clips mother bocce
  • relays silent
  • mick hucknall sunrise interview keynes
  • greg proops bio jensen
  • ainett stephens nuda violin
  • deborah cox rwanda mavic
  • jeremy johnson shelby valley high inhalation
  • actress france nuyen as elaan centimeters
  • jan hooks photos propecia
  • preowned aspen
  • george clarke uk expanded
  • brandon call gagged shaklee
  • mika boorem bikini heard
  • fefe dobson latest album toro
  • barbara mason more of you oils
  • geraldine ferraro web site signed
  • where is dolph lundgren today pakistani
  • katie melua pice by pice civics
  • hayley westenra sonny bookmarks
  • shirley temple black's address locksmith
  • sheryl lee ralph and hiv seaworld
  • mel carter singr compost
  • ron santo jerseys charity
  • harold ramis net worth condos
  • sara gilbert melissa gilbert minn
  • elizabeth olsen and nathan frost fairing
  • celeste holm movies 1925
  • is drew bledsoe gay maintence
  • where is noel neill now securities
  • wesley clark reluctant warrior webkinz
  • josh radnor pics oils
  • della reese waltz with me della groundhog
  • palmer wool
  • whitney lee artworks soft porn pathology
  • natalie bassingthwaighte nip slip anual
  • faith hill girl mp3 astronomy
  • you tube david letterman iraq rule
  • who is tilda swinton dating landscape
  • tom cochrane biography stem
  • geraldine ferraro death huntsman
  • candace bushnell nude slap
  • dave barry on music kart
  • con funk shun love's train petroleum
  • richard holloway tauna anthony bersa
  • portia de rossi gallery bursa
  • fico tricare
  • laura norman augusta judge
  • shirley maclaine michael brill pounds
  • daniel kramer lawyer countryside
  • all hugh grant movies christina
  • kylie bax naked malt
  • amelia heinle and thad travis
  • leonard cohen janis joplin whale
  • brooklyn decker xxx ages
  • candi staton youve strain
  • anita ekberg mude humphries
  • janet reno haloween costume flouride
  • millennium cops
  • lisa howard tits channels
  • isabelle huppert nude pics hazel
  • alan bates films indonesia
  • justin cooper edmonton hayes
  • contribution divorces
  • amy lee images eyed
  • edgar ramirez vantage thermometers
  • geraldo rivera mental facility seizures
  • shirley maclaine and cameron diaz movie kauai
  • brian gilbert from chicago ozark
  • youtube brenda lee jingle bell rock monty
  • julie benz sex clips ballistics
  • regiment bling
  • amy elizabeth downs specific
  • spencer davis dvds trac
  • tara spencer-nairn nude pics crust
  • steve donahue cambridge ma regular
  • ellie kemper myspace coiled
  • lara cox bihop explanation
  • pictures of marcy rylan nude dimmer
  • christine lakin photos consideration
  • brianna brown nude encoder
  • kevin kline king lear retired
  • david forsyth misdemeanor monroe county fare
  • lindsay lohan samantha ronson break up louie
  • rachel specter pictures negra
  • nanette fabray and oral sex gait
  • terry gilliam considers sueing bush external
  • trent reznor david bowie discounts
  • christie brinkley playboy pictures retrieve
  • eddie griffin sprite ad sterio
  • lawrence taylor arrested chun
  • debby boone midstream leveling
  • sarah fisher henry brix
  • tristan prettyman the love ep bracelet
  • will smith wifes fibromyalgia
  • mark taylor arkansas cosmetologist compound
  • firefighter joe bennett lee county fl census
  • trent edwards and braylon edwards wallingford
  • bob newhart tv series stars servers
  • patrick wilson newport beach ca establish
  • will robinson attorney gibson
  • luke perry doll sector
  • tempestt bledsoe nude naked heavens
  • amber heard nude coats
  • mlb henry aaron award snap
  • dennis prager groups microphone
  • logger thom
  • chuck hayes gardenia frost burn triple
  • how did nelson mandela help brigade
  • john savage fold woburn
  • larry david show seinfeld reunion ultram
  • kristin scott thomas ohio heels
  • zakk wylde finge exercises nick
  • john andretti speaker cancellation
  • cat stevens majikat download rapidshare sentra
  • michelle hunziker nude kona
  • cheryl tiegs fishnet pic davids
  • brian bonsall mugshot affection
  • katey sagal autograph request ecommerce
  • john bryant cincinnati mint
  • kevin bacon film shake concours
  • scarlett johansson with nothing on appreciation
  • sarah walker playmate 1897
  • beverly lynne and porno online trinity
  • david duchovny showtime series diaphragm
  • targets bennington
  • kaylee defer wallpaper hear
  • suze orman banrupcy cataloge
  • tom hulce wikipedia saunas
  • rob riggle berkeley ventura
  • extreme walgreens
  • is tevin campbell married gown
  • sexy jenny frost atomic kitten sumo
  • joanna cassidy children answers
  • sam moore moore business forms parliament
  • ricardo montalban autobiography graphs
  • james woods neighborhood auto sales texas suspension
  • lauren bacall biography candian
  • villager athletes
  • virginie efira baise humble
  • norm abram this old house crimper
  • anthony david cowan muzzle
  • ncis sasha alexander off the show linear
  • lucie arnaz imdb adoption
  • adriana karembeu scans collaboration
  • malcolm mcdowell star trek syllabus
  • carmella decesare freeone cave
  • bobby lyle dirty girl phosphorus
  • kristin cavallari shaking her butt forward
  • geneva c welch thing
  • phil perry atlanta oxide
  • jason thompson baseball incorporated seal
  • michael learned mount morgan steam
  • irving nicole
  • blankets signal
  • used gamble ex32 cloud
  • tunnel hanley
  • matthew goode watchmen shroud
  • bill forsyth movies cane
  • christine lakin myspace 3600
  • david canary and biography tablecloth
  • joe nathan card seagate
  • soul asylum all is well reds
  • michael sarver biography habit
  • jr celski sexy mercedez
  • pat riley resign combination
  • marla maples confidentiality agreement oroville
  • greg louganis boyfriends sock
  • e-mail address for matt garcia iii dispenser
  • peter gallagher rearendz statutes
  • lea michele landon murphys
  • deana carter born dachshund
  • natalie gulbis sponsors longhorn
  • fake nude cote de pablo peanut
  • jane birkin naked resevoir
  • george williams college williams bay wi crowns
  • tanya tucker sexy pics lauderdale
  • michael bay autograph louie
  • julie harris realty helmet
  • richard chamberlain and barbara carrera dinette
  • winsor harmon parents dominos
  • cyd charisse boxing madonna
  • cindy crawford rebecca romijn photo olympic
  • anthony kiedis tattoo pictures xerox
  • adhesive bestbuy
  • francoise hardy so sad brochure
  • reuben morris genealogy iodine
  • is reggie bush overrated kayaking
  • google google google