Fix bio domination bug.

This commit is contained in:
jmsgrogan 2017-10-25 10:58:31 +01:00
parent 2604e3889a
commit 6a97bd6cf7
13 changed files with 64 additions and 134 deletions

View file

@ -23,12 +23,12 @@ if __name__ == "__main__":
os.makedirs(os.getcwd() + "/" + output)
# Global bounding box
bbox_xmax = 4.0
bbox_ymax = 5.0
bbox_xmax = 5.0
bbox_ymax = 4.0
# Minimum feature sizes
feature_xmin = 0.4
feature_ymin = 1.0
feature_xmin = 2.0
feature_ymin = 0.5
shape_parameters = sd.get_random_shape_description(shape,
[bbox_xmax, bbox_ymax],
[feature_xmin, feature_ymin])