-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
42 lines (37 loc) · 1.01 KB
/
main.cpp
File metadata and controls
42 lines (37 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
#include <algorithm>
#include "Job.h"
#include "Info.h"
#include "ofMain.h"
#include "ofApp.h"
/* Code citations:
*
* Authors: GeeksforGeeks
* Date: Last updated: October 24, 2022
* Title : ShellSort
* Code version: C++
* Type: Code implementation for shell sort
* Website: https://www.geeksforgeeks.org/shellsort/
*
*
* Authors: GeeksforGeeks
* Date: Last updated: February 6, 2022
* Title : C++ Program for QuickSort
* Code version: C++
* Type: Code implementation for quick sort
* Website: https://www.geeksforgeeks.org/cpp-program-for-quicksort/
*
* Concepts about how to store, sort, and implement the front end design were all
* discussed with Ansh Kalariya, Jason Guan and Spencer Walgren.
*/
int main( ){
ofSetupOpenGL(1024,768,OF_WINDOW); // <-------- setup the GL context
// this kicks off the running of my app
// can be OF_WINDOW or OF_FULLSCREEN
// pass in width and height too:
ofRunApp(new ofApp());
return 0;
}