From ee10f91fdf41f4dde3eab3fb0ca2be10e01a3a6f Mon Sep 17 00:00:00 2001 From: John Collins Date: Sun, 10 Mar 2024 15:09:19 -0700 Subject: [PATCH] README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5d8b49284..1fe54333e 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ public class ManifoldExample { public static void main(String[] args) { Manifold sphere = Manifold.Sphere(10.0f, 20); - Manifold cube = Manifold.Cube(new DoubleVec3(15.0f, 15.0f, 15.0f), false); + Manifold cube = Manifold.Cube(new DoubleVec3(15.0, 15.0, 15.0), false); Manifold cylinder = Manifold.Cylinder(3, 30.0f, 30.0f, 0, false) .translateX(20).translateY(20).translateZ(-3.0);