-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.py
More file actions
33 lines (27 loc) · 707 Bytes
/
settings.py
File metadata and controls
33 lines (27 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- coding: utf-8 -*-
"""
Created on Thu Jun 16 10:27:51 2022
@author: Kasper Krunderup Jakobsen and Sofus Boisen
"""
import numpy as np
# global variables for use in multiple files
def init():
"""
To run on startup of main to set global variables
"""
global SystemsList
global System
global N
global lettermapping
global selfdefined_start
global name
global iteration_scaling
global turtleAction
SystemsList = np.array(["Koch curve","Sierpinski triangle"])
System = ''
N = 0
lettermapping = np.array([], dtype = object)
selfdefined_start = ''
name =''
iteration_scaling = 1
turtleAction = np.zeros([], dtype = object)