Revert "Merge branch 'master' of github.com:3b1b/manim into alt-calc"

This reverts commit 17a1ea6db500eddfdec75cc727b70737d892e961, reversing
changes made to c8c6e6d9ba77d42c8d50d8187ca2b0427da0079c.
This commit is contained in:
Grant Sanderson
2018-05-21 12:11:46 -07:00
parent 0f3b54694d
commit 13d7228918
22 changed files with 468 additions and 328 deletions

View File

@ -17,17 +17,20 @@ LOW_QUALITY_FRAME_DURATION = 1. / 15
MEDIUM_QUALITY_FRAME_DURATION = 1. / 30
PRODUCTION_QUALITY_FRAME_DURATION = 1. / 60
# There might be other configuration than pixel_shape later...
# There might be other configuration than pixel shape later...
PRODUCTION_QUALITY_CAMERA_CONFIG = {
"pixel_shape": (DEFAULT_PIXEL_HEIGHT, DEFAULT_PIXEL_WIDTH),
"pixel_height": DEFAULT_PIXEL_HEIGHT,
"pixel_width": DEFAULT_PIXEL_WIDTH,
}
MEDIUM_QUALITY_CAMERA_CONFIG = {
"pixel_shape": (720, 1280),
"pixel_height": 720,
"pixel_width": 1280,
}
LOW_QUALITY_CAMERA_CONFIG = {
"pixel_shape": (480, 854),
"pixel_height": 480,
"pixel_width": 854,
}
DEFAULT_POINT_DENSITY_2D = 25