aboutsummaryrefslogtreecommitdiffstats
path: root/ardor3d-examples/src
diff options
context:
space:
mode:
authorJoshua Slack <[email protected]>2017-09-06 13:25:50 -0500
committerJoshua Slack <[email protected]>2017-09-06 13:25:50 -0500
commit667a92257e00530c9dc85d7c737acead45169629 (patch)
treeeec22131bb8e9fc84762e23e46674f5e13c69808 /ardor3d-examples/src
parent276240b3c9fda93e2ec76816b6d5f4307b549790 (diff)
Updates to Disk to allow for hole in center.
Diffstat (limited to 'ardor3d-examples/src')
-rw-r--r--ardor3d-examples/src/main/java/com/ardor3d/example/basic/ShapesExample.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/ardor3d-examples/src/main/java/com/ardor3d/example/basic/ShapesExample.java b/ardor3d-examples/src/main/java/com/ardor3d/example/basic/ShapesExample.java
index e070de4..5d11a82 100644
--- a/ardor3d-examples/src/main/java/com/ardor3d/example/basic/ShapesExample.java
+++ b/ardor3d-examples/src/main/java/com/ardor3d/example/basic/ShapesExample.java
@@ -102,7 +102,7 @@ public class ShapesExample extends ExampleBase {
addMesh(new Capsule("Capsule", 5, 5, 5, 2, 5));
addMesh(new Cone("Cone", 8, 8, 2, 4));
addMesh(new Cylinder("Cylinder", 8, 8, 2, 4));
- addMesh(new Disk("Disk", 8, 8, 3));
+ addMesh(new Disk("Disk", 2, 36, 3, 0.5));
addMesh(new Dodecahedron("Dodecahedron", 3));
addMesh(new Dome("Dome", 8, 8, 3));
addMesh(new Hexagon("Hexagon", 3));