Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pukoren/opengl-b-splines
Learning B-Splines with OpenGL
https://github.com/pukoren/opengl-b-splines
Last synced: 25 days ago
JSON representation
Learning B-Splines with OpenGL
- Host: GitHub
- URL: https://github.com/pukoren/opengl-b-splines
- Owner: PuKoren
- Created: 2013-04-20T18:38:04.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-05-21T07:59:59.000Z (over 11 years ago)
- Last Synced: 2023-06-09T08:35:14.431Z (over 1 year ago)
- Language: C++
- Size: 303 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
opengl-b-splines
================Learning B-Splines with OpenGL.
The Spline class use a lot of Paul Bourke C code to draw splines. Thanks to him.
http://paulbourke.net/libraries/paulslib.hDependencies (to run binary):
================
####Debian users:
apt-get install freeglut3-dev libxmu-dev libxi-dev####Windows users:
All should be linked in the .exe so you should not need anything######This program needs OpenGL libs to run.
Dependencies (to build):
===============
####Debian users:
apt-get install cmake g++ freeglut3-dev libxmu-dev libxi-dev####Windows users:
MinGW with MSYS and g++ compilerCmake installed on Cygwin
Building
========
####Unix:
mkdir buildcd build
cmake ../.
make
####Windows with Cygwin shell:
mkdir buildcd build
cmake -G "MSYS Makefiles" ../.
make