A few fixes to initial point_thickness implementation

This commit is contained in:
Grant Sanderson
2015-10-10 18:48:25 -07:00
parent c0994ed0a5
commit 014a277a97
3 changed files with 15 additions and 8 deletions

View File

@ -1,9 +1,6 @@
import os
import numpy as np
GENERALLY_BUFFER_POINTS = True
PRODUCTION_QUALITY_DISPLAY_CONFIG = {
"height" : 1440,
"width" : 2560,
@ -20,6 +17,8 @@ LOW_QUALITY_DISPLAY_CONFIG = {
DEFAULT_POINT_DENSITY_2D = 25
DEFAULT_POINT_DENSITY_1D = 200
DEFAULT_POINT_THICKNESS = 4
#TODO, Make sure these are not needd
DEFAULT_HEIGHT = PRODUCTION_QUALITY_DISPLAY_CONFIG["height"]
DEFAULT_WIDTH = PRODUCTION_QUALITY_DISPLAY_CONFIG["width"]