Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
added a hello world program
  • Loading branch information
cor11004 committed Nov 22, 2015
1 parent 52fd44a commit 88af897
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
17 changes: 16 additions & 1 deletion README.md
@@ -1 +1,16 @@
# compgeoproject
# Half Edge Data Structuret

Concept this program will illustrate
------------------------------------

The user interaction
--------------------

GUI Description
---------------

Authors
--------
James Boive
Joey Muller
Connor Riley
16 changes: 16 additions & 0 deletions main/main.pde
@@ -0,0 +1,16 @@
void settings() {
size(500, 500, P3D); // 3D env
}
void setup() {
background(255);
fill(0,0);
}

void draw() {
fill(0,0,255,40);
noStroke();
pushMatrix(); // store the default translation matrix
translate(width/2, height/2,0); // alter the current translation
sphere(100); //place the sphere in center of current translation
popMatrix(); // return to default translation
}

0 comments on commit 88af897

Please sign in to comment.