Skip to content

Instantly share code, notes, and snippets.

View agjaeger's full-sized avatar

Alex Jaeger agjaeger

  • University Of Arkansas at Little Rock
  • Little Rock, Arkansas
View GitHub Profile
syntax on
set noerrorbells
set tabstop=4 softtabstop=4
set shiftwidth=4
set expandtab
set smartindent
set nu
set nowrap
set smartcase
@agjaeger
agjaeger / surfaceInterpolation.py
Created October 5, 2017 04:52
B-Spline Surface Interpolation - Python 3 -
"""
Written by Alex Jaeger
Derived from http://paulbourke.net/geometry/spline/
"""
import random
import numpy as np
def outputOOGL(controlMatrix, outputMatrix):
@agjaeger
agjaeger / OpenGL Starter Code
Last active August 29, 2015 14:18
This is starter code for OpenGL 4.0 in C++ using FreeGlut
/*
g++ main.cpp -lglut -lGL -lGLU
*/
#include "GL/freeglut.h"
#include "GL/gl.h"
char title[] = "OpenGL Window";
void initGL() {