
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]
14 lines
185 B
C++
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);
|
|
}
|
|
}
|
|
|