Circularmachines
commited on
Commit
•
458490b
1
Parent(s):
d944227
app.py updates
Browse files
app.py
CHANGED
@@ -40,7 +40,7 @@ def button_click():
|
|
40 |
|
41 |
def find():
|
42 |
point=st.session_state["point"]
|
43 |
-
point=(point[0]//
|
44 |
#point=point[0]*36+point[1]
|
45 |
st.write(point)
|
46 |
st.write(keep_bool[point[0],point[1]])
|
|
|
40 |
|
41 |
def find():
|
42 |
point=st.session_state["point"]
|
43 |
+
point=(point[0]//16,point[1]//16)
|
44 |
#point=point[0]*36+point[1]
|
45 |
st.write(point)
|
46 |
st.write(keep_bool[point[0],point[1]])
|