Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 285 Bytes

ex1-solution.adoc

File metadata and controls

11 lines (6 loc) · 285 Bytes

Exercise 1 Solution

1. Original cube

cube(size=[20, 3, 6]);

2. Centered around the origin

cube(size=[20, 3, 6], center=true);

Note that if you use parameter names, you can specify the parameters in either order. cube(center=true, size=[20, 3, 6]) is equivalent.