Example #1
0
 def __init__(self):
     Drawing.__init__(self)
     self.previous_direction = None
     self.drawing_mode = LineDrawingMode
     self.radius_for_circle = 5.0
     self.circle_mode = ThreePointsCircleMode
     self.save_drawing_mode = []
Example #2
0
 def __init__(self, people, main, influence, ad, recommendation, graph, env, res = (1920,1080), current = 0):
     Drawing.__init__(self, res)
     self.graph = people
     self.mainConfig = main
     self.influenceConfig = influence
     self.adConfig = ad
     self.recommendationConfig = recommendation
     self.graphConfig = graph
     self.envConfig = env
     self.transitions = []
     self.go = True
     self.current = current
     self.key = 1
Example #3
0
 def __init__(self):
     Drawing.__init__(self)
     self.profile = None
Example #4
0
 def __init__(self):
     Drawing.__init__(self)
Example #5
0
 def __init__(self, graph, config, res = (1920, 1080)):
     Drawing.__init__(self, res = (1920, 1080))
     self.graph = graph
     self.config = config
Example #6
0
 def __init__(self):
     Drawing.__init__(self)
     self.spline_points = []
     self.drawing_mode = EllipseDrawingMode
     self.spline_mode = CubicSplineMode