This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Adam Leeper | |
| Aditya Sawant | |
| Adria2 | |
| Akash Manohar J | |
| Aki | |
| Aleksandar Rodic | |
| Alessandro Piva | |
| Alex | |
| Alex Kogan | |
| Alex Schworer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| define( [ 'WebGLRendererModule' ], function ( renderer ) { | |
| return function () { | |
| return new FRAME.Module( { | |
| parameters: { | |
| color: new FRAME.ModuleParameter.Color( 'Color', 0xffffff ), | |
| opacity: new FRAME.ModuleParameter.Float( 'Opacity', 1, 0, 1 ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| time_micros:integer,c_ip:string,c_ip_type:integer,c_ip_region:string,cs_method:string,cs_uri:string,sc_status:integer,cs_bytes:integer,sc_bytes:integer,time_taken_micros:integer,cs_host:string,cs_referer:string,cs_user_agent:string,s_request_id:string,cs_operation:string,cs_bucket:string,cs_object:string |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // firefox | |
| document.addEventListener( 'visibilitychange', function ( event ) { | |
| if ( document.hidden === false ) { | |
| lastTime = performance.now(); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Mr.doob's Threedoob | |
| * | |
| * Released under MIT license: | |
| * http://www.opensource.org/licenses/mit-license.php | |
| * | |
| * How to use: | |
| * | |
| * TO-DO | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var context = canvas.getContext( '2d' ); | |
| context.imageSmoothingEnabled = false; | |
| context.webkitImageSmoothingEnabled = false; | |
| context.mozImageSmoothingEnabled = false; | |
| context.drawImage( img, 0, 0, 256, 256 ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Animated GIF Generator</title> | |
| <meta charset="utf-8"> | |
| <style> | |
| body { | |
| background-color: #ffffff; | |
| margin: 0; | |
| overflow: hidden; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @author mrdoob / http://mrdoob.com/ | |
| * @author mraleph / http://mrale.ph/ | |
| */ | |
| THREE.SoftwareRenderer = function () { | |
| console.log( 'THREE.SoftwareRenderer', THREE.REVISION ); | |
| var canvas = document.createElement( 'canvas' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * +--------------------+ | |
| * | element1 | | |
| * | +----------+ | | |
| * | | element2 | | | |
| * | +----------+ | | |
| * +--------------------+ | |
| * | |
| * (element2 is a child of element1) | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>three.js webgl - geometry - minecraft - ao</title> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> | |
| <style> | |
| body { | |
| color: #61443e; | |
| font-family:Monospace; |