Changes between Version 8 and Version 9 of Ticket #32560
- Timestamp:
- 10/27/21 16:50:28 (8 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32560 – Description
v8 v9 9 9 For instance, the following example 10 10 {{{ 11 sage: plot= sum([cube((0, 0, i)) for i in range(0, 6)])12 sage: plot.show(aspect_ratio=[1, 1, 1])11 sage: cubes = sum([cube((0, 0, i)) for i in range(0, 6)]) 12 sage: cubes.show(aspect_ratio=[1, 1, 1]) 13 13 }}} 14 14 shows a stack of cubes squeezed along the z-axis,