コード例 #1
0
 def __init__(self, **kwargs):
     # Force these dimensions
     self.camera_config = {
         "pixel_height": 1440,
         "pixel_width": 2560,
     }
     Scene.__init__(self, **kwargs)
コード例 #2
0
ファイル: common_scenes.py プロジェクト: coallaoh/manim
 def __init__(self, **kwargs):
     # Force these dimensions
     self.camera_config = {
         "pixel_height": 1440,
         "pixel_width": 2560,
     }
     Scene.__init__(self, **kwargs)
コード例 #3
0
 def __init__(self, graph, *args, **kwargs):
     # See CubeGraph() above for format of graph
     self.graph = graph
     Scene.__init__(self, *args, **kwargs)
コード例 #4
0
ファイル: graph_theory.py プロジェクト: coallaoh/manim
 def __init__(self, graph, *args, **kwargs):
     # See CubeGraph() above for format of graph
     self.graph = graph
     Scene.__init__(self, *args, **kwargs)