More hilbert work, including simple new Grid mobject

This commit is contained in:
Grant Sanderson
2015-12-19 13:06:09 -08:00
parent 32fe2e9373
commit d5c70fe0cb
8 changed files with 109 additions and 21 deletions

View File

@ -170,10 +170,10 @@ def path_along_arc(arc_angle):
return path
def clockwise_path():
return path_along_arc(np.pi)
return path_along_arc(-np.pi)
def counterclockwise_path():
return path_along_arc(-np.pi)
return path_along_arc(np.pi)
################################################