mirror of
https://github.com/3b1b/manim.git
synced 2025-08-02 11:03:03 +08:00
MovingCamera has started working
This commit is contained in:
11
constants.py
11
constants.py
@ -1,24 +1,21 @@
|
||||
import os
|
||||
import numpy as np
|
||||
|
||||
|
||||
DEFAULT_HEIGHT = 1440
|
||||
DEFAULT_WIDTH = 2560
|
||||
DEFAULT_FRAME_DURATION = 0.04
|
||||
|
||||
#There might be other configuration than pixel_shape later...
|
||||
PRODUCTION_QUALITY_DISPLAY_CONFIG = {
|
||||
"shape" : (DEFAULT_HEIGHT, DEFAULT_WIDTH),
|
||||
"frame_duration" : DEFAULT_FRAME_DURATION,
|
||||
"pixel_shape" : (DEFAULT_HEIGHT, DEFAULT_WIDTH),
|
||||
}
|
||||
|
||||
MEDIUM_QUALITY_DISPLAY_CONFIG = {
|
||||
"shape" : (720, 1280),
|
||||
"frame_duration" : 0.04,
|
||||
"pixel_shape" : (720, 1280),
|
||||
}
|
||||
|
||||
LOW_QUALITY_DISPLAY_CONFIG = {
|
||||
"shape" : (480, 640),
|
||||
"frame_duration" : 0.04,
|
||||
"pixel_shape" : (480, 640),
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user