solvespace/solvespace.cpp
Jonathan Westhues e426fe8a53 Start to add OpenGL support to SolveSpace, for the graphical view.
I've got the user interface to pan and rotate an object, more or
less works.

[git-p4: depot-paths = "//depot/solvespace/": change = 1654]
2008-03-27 01:53:51 -08:00

15 lines
200 B
C++

#include "solvespace.h"
SolveSpace SS;
void SolveSpace::Init(void) {
TW.Init();
GW.Init();
int i;
for(i = 0; i < 20; i++) {
TW.Printf("this is line number %d", i);
}
}