Skip to content

Instantly share code, notes, and snippets.

View sarcasticsimba's full-sized avatar

Vignesh sarcasticsimba

View GitHub Profile
@axiixc
axiixc / editor.html
Created August 18, 2013 08:05
Just a little something I'm working on…
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
html {
height: 100%;
overflow-y: hidden; }
body {
background: #dfdfdf;
@Jamil
Jamil / trig-approximations.c
Last active December 20, 2015 19:18
Simple approximations for sine and cosine using recursive identities + small angle approximation and Maclaurin Series
// Math Defs
float factorial (float n) {
if (n < 1)
return 1;
return (n*factorial(n-1));
}
// Approximations Using Trig Identities & Small Angle Formulae