Skip to content

Instantly share code, notes, and snippets.

View pierceh89's full-sized avatar
🌊

H.An pierceh89

🌊
View GitHub Profile
@pierceh89
pierceh89 / QHull.md
Last active March 14, 2016 10:28 — forked from UnaNancyOwen/QHull.2012.1.md
Building QHull with Visual Studio

Building QHull with Visual Studio (비주얼 스투디오로 QHull 빌드하는 법)

Download

  1. QHull 2012.1 for Windows(qhull-2012.1.zip)를 다운로드하여 원하는 위치에 압축을 푼다. (예: C:\qhull-2012.1)
    http://www.qhull.org/download/

CMake

@pierceh89
pierceh89 / graph.h
Last active December 9, 2015 12:48
Integer weighted directed graph + Strongly Connected Components (SCC) implementation
#include <iostream>
#include <vector>
#include <map>
#include <string>
using namespace std;
extern unsigned int time;
// vertex data structure
// employs STL pair and vector to store adjacent list
@pierceh89
pierceh89 / FLANN.md
Last active November 22, 2015 17:29 — forked from UnaNancyOwen/FLANN1.8.4.md
Building FLANN with Visual Studio
@pierceh89
pierceh89 / VTK5.md
Last active November 19, 2015 04:47 — forked from UnaNancyOwen/VTK5.md
Building VTK with Visual Studio