I hereby claim:
- I am ikriz on github.
- I am ikriz (https://keybase.io/ikriz) on keybase.
- I have a public key ASD-KA1MidhC1bkpW8qeINNLO8wPLsdW2gBfLcVAvOz80Qo
To claim this, I am signing this object:
using UnityEngine; | |
using System.Collections.Generic; | |
public class MyStateMachine : MonoBehaviour | |
{ | |
public delegate void StateHandlerDelegate (); | |
public enum MyStateType |
/* | |
* http://arduino.cc/playground/ComponentLib/Thermistor2 | |
* | |
* Inputs ADC Value from Thermistor and outputs Temperature in Celsius | |
* requires: include <math.h> | |
* Utilizes the Steinhart-Hart Thermistor Equation: | |
* Temperature in Kelvin = 1 / {A + B[ln(R)] + C[ln(R)]3} | |
* where A = 0.001129148, B = 0.000234125 and C = 8.76741E-08 | |
* | |
* These coefficients seem to work fairly universally, which is a bit of a |
void SplitYUVPlanes(int width, int height, unsigned char *data, int size, unsigned char *yuvInput[3]) | |
{ | |
// live input *data is YUV444 Packed | |
// Conversion from 444 Packed -> 444 Planar | |
int index = 0; | |
int srcStride = size; | |
// need to flip image from bottom-up to top-down | |
int revheight = height - 1; | |
using UnityEngine; | |
public class Webcam : MonoBehaviour | |
{ | |
public MeshRenderer[] UseWebcamTexture; | |
private WebCamTexture webcamTexture; | |
void Start() | |
{ |
using System.IO; | |
using UnityEngine; | |
using UnityEditor; | |
using UnityEditor.Callbacks; | |
public static class PostBuildTrigger | |
{ | |
private static DirectoryInfo targetdir; | |
private static string buildname; | |
private static string buildDataDir; |
Shader "Diffuse Lightmap" { | |
Properties { | |
_MainTex ("Texture 1", 2D) = "white" {} | |
} | |
SubShader { | |
Tags { "RenderType" = "Opaque" } | |
Pass { |
using UnityEngine; | |
public class EnumFlagAttribute : PropertyAttribute | |
{ | |
public string enumName; | |
public EnumFlagAttribute() {} | |
public EnumFlagAttribute(string name) | |
{ |
using UnityEditor; | |
using UnityEditorInternal; | |
public class EnableMacros : Editor { | |
[MenuItem ("Window/Macros")] | |
static void Init () { | |
MacroWindow win = (MacroWindow)EditorWindow.CreateInstance<MacroWindow>(); | |
win.Show(); | |
} | |
} |
I hereby claim:
To claim this, I am signing this object:
# NMEA to GPX converter | |
# Peter Pearson | |
# version 0.11 | |
import csv | |
import sys | |
import time | |
from time import strftime | |
def convert_dms_to_dec(value, dir): |