Skip to content

Instantly share code, notes, and snippets.

Created June 25, 2013 03:07
Show Gist options
  • Save anonymous/5855618 to your computer and use it in GitHub Desktop.
Save anonymous/5855618 to your computer and use it in GitHub Desktop.
YUI().use('y3d-picker-plugin' ,'y3d-scene', 'y3d-camera', 'y3d-geometry-box', function(Y) {
var scene = new Y.Scene({
camera: new Y.Camera({
z: 20
}),
background: '#272822'
});
console.log(Y.Plugin.Picker);
var box = new Y.Box({
color: '#ff7700'
});
box.rotate('xy', 45);
scene.add(box);
scene.render();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment