diff --git a/src/views/GettingStarted.vue b/src/views/GettingStarted.vue index 4e7f9cb..f82f1b9 100644 --- a/src/views/GettingStarted.vue +++ b/src/views/GettingStarted.vue @@ -78,14 +78,14 @@
>>> box = Box(xsize=1, ysize=1, zsize=1)
 >>> mesh = box.to_mesh()
->>> ball = mesh.subdivided(steps=3)
+>>> ball = mesh.subdivided(k=3)
 >>> ball.to_obj('ball.obj')
 

Or, as a one-liner...

>>> Box(1).to_mesh().subdivided(steps=3).to_obj('ball.obj')
+>>>> Box(1).to_mesh().subdivided(k=3).to_obj('ball.obj')
 

To see the result, import the OBJ file into your favourite CAD software.