Isometric computer programs accomplish the same end task, and present the same user interface, but are coded differently. example:

cout << "isometric\n";

is the same as:

printf("isometric\n");

is also the same as:

printf("%s\n", "isometric");

Return to "isometric" page.