solvespace/solvespace.cpp
Jonathan Westhues fcdf43d487 More fragments of SolveSpace work. Improve the command line window,
and add some (non-functional) menus to the graphics window. Start
to rough in some data structures to hold the sketch. No real work
yet, though.

[git-p4: depot-paths = "//depot/solvespace/": change = 1653]
2008-03-26 01:18:12 -08:00

14 lines
185 B
C++

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