remove spurious whitespace algebra

This commit is contained in:
jdegenstein 2023-04-06 21:10:32 -05:00 committed by GitHub
parent 0d06d4dd01
commit 31ac0a55a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -375,7 +375,6 @@ planes = [
]
objs = [mirror(ex16_single, plane) for plane in planes]
ex16 = ex16_single + objs
# [Ex. 16]
svgout(ex_counter)
@ -724,16 +723,13 @@ ex_counter += 1
# [Ex. 33]
a, b, c = 80.0, 5.0, 1.0
def square(rad, loc):
return loc * RegularPolygon(rad, 4)
ex33 = Part() + [
extrude(square(b + 2 * i, loc), c + 2 * i)
for i, loc in enumerate(PolarLocations(a / 2, 6))
]
# [Ex. 33]
svgout(ex_counter)
@ -791,7 +787,6 @@ ex36_sk = Pos(0, rev) * Circle(rad)
ex36 = revolve(axis=Axis.X, profiles=ex36_sk, revolution_arc=180)
ex36_sk2 = Rectangle(rad, rev)
ex36 += extrude(ex36_sk2, until=Until.NEXT, target=ex36)
# [Ex. 36]
svgout(ex_counter)