Skip to content

Instantly share code, notes, and snippets.

View axjxwright's full-sized avatar

axjxwright

View GitHub Profile
#include "cinder/app/App.h"
#include "cinder/app/RendererGl.h"
#include "cinder/gl/gl.h"
using namespace ci;
using namespace ci::app;
using namespace std;
class LinesApp : public App
{
@axjxwright
axjxwright / AntTweakBarTest.cxx
Last active August 29, 2015 14:18
Standalone AntTweakBar test application
/**
* Compile with Makefile. Assumes glfw3 and AntTweakBar are in /usr/local/ (via homebrew on osx)
* all:
* clang++ Main.cxx -o main -framework OpenGL -framework IOKit -framework Cocoa -L/usr/local/lib -I/usr/local/include -lglfw3 -lanttweakbar -std=c++11 -stdlib=libc++ -Wno-deprecated-register -Wno-shift-op-parentheses
*
* Standalone AntTweakBar (version 1.16) test application
**/
#include <GLFW/glfw3.h>
#include <iostream>