Julia Krolik & Owen Fernley
Exploratory
Creative
JPEG / JPEG 2000
TIFF / PNG / BMP
webP / HEIF
BAT / GIF / BNG
Photoshop of the Web
Animation
var animate = function () {
requestAnimationFrame( animate );
cube.rotation.x += 0.1;
cube.rotation.y += 0.1;
renderer.render(scene, camera);
};
Lights
var light1 = new THREE.PointLight( 0xffffff );
light1.position.set( -700, 1000, 300 );
light1.intensity = 0.5;
var light2 = new THREE.PointLight( 0xffffff );
light2.position.set( 700, 1000, -300 );
light2.intensity = 0.8;
var light3 = new THREE.AmbientLight( 0x222222 );
scene.add( light1 );
scene.add( light2 );
scene.add( light3 );
(SVG)
Thank You
Presentation link: https://pixelsandplans.com/slidedecks/the-jpeg-is-dead
LinkedIn: Julia Krolik | Owen Fernley
Twitter: @yuliakrolik | @o1sound