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
/** | |
* Evan Wilde | |
* May 6 2015 | |
* | |
* This file is to test nanoflann kd tree with glm::vec3 datastructures | |
* This tests a set of points using an adaptor | |
* This separates the implementation of the datastructures a bit better | |
*/ | |
#include <glm/glm.hpp> |
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
#!/bin/env python | |
# Works with pathogen plugin manager for vim | |
import urllib.request | |
from subprocess import call | |
import shutil | |
from os import makedirs, path | |
# Bundles from git |
NewerOlder