Project moved from gist to full GitHub project: chanibal/addbom.
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 debuglog | |
using System; | |
using System.Diagnostics; | |
using System.Text; | |
using Microsoft.VisualStudio.TestTools.UnitTesting; | |
/// Normalizes CSV lines to fully escaped form - for use in database imports | |
/// Ex. | |
/// a,b,c -> 'a','b','c' |
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
THREE.WebGLRenderer 71 | |
three.js:34 THREE.WebGLRenderer: OES_texture_float_linear extension not supported. | |
three.js:31981 THREE.PlaneGeometry: Consider using THREE.PlaneBufferGeometry for lower memory footprint. | |
three.js:31981 THREE.PlaneGeometry: Consider using THREE.PlaneBufferGeometry for lower memory footprint. | |
three.js:31981 THREE.PlaneGeometry: Consider using THREE.PlaneBufferGeometry for lower memory footprint. | |
three.js:31981 THREE.PlaneGeometry: Consider using THREE.PlaneBufferGeometry for lower memory footprint. | |
three.js:31981 THREE.PlaneGeometry: Consider using THREE.PlaneBufferGeometry for lower memory footprint. | |
three.js:34 THREE.WebGLRenderer: Texture is not power of two. Texture.minFilter should be set to THREE.NearestFilter or THREE.LinearFilter. ( ) | |
three.js:34 THREE.WebGLShader: gl.getShaderInfoLog() WARNING: 0:3: ' | |
' : extension directive must occur before any non-preprocessor tokens |
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
73411/0x1e4c05: open("/Library/Java/JavaVirtualMachines/jdk1.7.0_45.jdk/Contents/Home/jre/lib/rt.jar\0", 0x0, 0x0) = 4 0 | |
73564/0x1e4e96: open("/Library/Java/JavaVirtualMachines/jdk1.7.0_45.jdk/Contents/Home/jre/lib/rt.jar\0", 0x0, 0x0) = 4 0 | |
73564/0x1e4ece: open("/Library/Java/JavaVirtualMachines/jdk1.7.0_45.jdk/Contents/Home/jre/lib/jsse.jar\0", 0x0, 0x0) = 66 0 | |
73564/0x1e4f5e: open("/Library/Java/JavaVirtualMachines/jdk1.7.0_45.jdk/Contents/Home/jre/lib/resources.jar\0", 0x0, 0x0) = 76 0 | |
73564/0x1e4ecf: open("/Library/Java/JavaVirtualMachines/jdk1.7.0_45.jdk/Contents/Home/jre/lib/ext/dnsns.jar\0", 0x0, 0x0) = 77 0 | |
73564/0x1e4ecf: open("/Library/Java/JavaVirtualMachines/jdk1.7.0_45.jdk/Contents/Home/jre/lib/jce.jar\0", 0x0, 0x0) = 81 0 | |
73564/0x1e4f5f: open("/Applications/NetBeans/NetBeans 8.0.2.app/Contents/Resources/NetBeans/platform/modules/org-netbeans-core-windows.jar\0", 0x0, 0x0) = 91 0 | |
73564/0x1e4f5f: open("/Applications/NetBeans/NetBeans 8.0.2.app/Contents/Resources/NetBeans/nb/ |
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
using UnityEngine; | |
/// <summary> | |
/// Gyroscope demo. Attach to a visible object or camera. | |
/// </summary> | |
public class GyroTest:MonoBehaviour { | |
Quaternion origin=Quaternion.identity; | |