Much pythagoras, plus better point thickness and display implementations

This commit is contained in:
Grant Sanderson
2015-10-09 19:53:38 -07:00
parent b8fba1f3ec
commit e2fc29851e
14 changed files with 2831 additions and 81 deletions

View File

@ -16,8 +16,8 @@ from script_wrapper import command_line_create_scene
class SampleScene(Scene):
def construct(self):
plane = NumberPlane(density = 400)
arrow1 = Arrow(ORIGIN, UP, color = "green")
plane = NumberPlane()
arrow1 = Arrow(ORIGIN, UP, color = "green", point_thickness = 5)
arrow2 = Arrow(ORIGIN, LEFT, color = "Red")
self.add(plane, arrow1, arrow2)