general_examples_algebra.py -> Fix ex31 lowercase z to valid uppercase Z

This commit is contained in:
jdegenstein 2023-12-13 10:18:18 -06:00 committed by GitHub
parent 592224ea2a
commit f7ad58194e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -518,7 +518,7 @@ ex30 = extrude(ex30_sk, -10)
# [Ex. 31]
a, b, c = 80.0, 5.0, 3.0
ex31 = Rot(z=30) * RegularPolygon(3 * b, 6)
ex31 = Rot(Z=30) * RegularPolygon(3 * b, 6)
ex31 += PolarLocations(a / 2, 6) * (
RegularPolygon(b, 4) + GridLocations(3 * b, 3 * b, 2, 2) * RegularPolygon(b, 3)
)