Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
vaibhav-jani committed Oct 16, 2013
1 parent c495adb commit 66fbaf6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions GeometricDrawings/src/x/y/ComplexIsoNotFilled.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ public void onCreate(Bundle savedInstanceState) {
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.main);

int l = 1;
int w = 1;
int d = 1;
int l = 16;
int w = 12;
int d = 8;

OpenBox box = new OpenBox(l*25, w*25, d*25,0, 0);

Expand Down
6 changes: 3 additions & 3 deletions GeometricDrawings/src/x/y/ComplexIsometric.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ public void onCreate(Bundle savedInstanceState) {
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.main);

int l = 8;
int w = 4;
int d = 3;
int l = 32; //Make length l = 1 for top view
int w = 24; //Make width w = 1 for side view
int d = 18; //Make depth d = 1 for front view

FilledOpenBox box = new FilledOpenBox(l*25, w*25, d*25,0, 0);

Expand Down

0 comments on commit 66fbaf6

Please sign in to comment.