This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio, evdev | |
from mouse_handlers import left_mouse_down, left_mouse_up | |
from mouse_handlers import right_mouse_down, right_mouse_up | |
from evdev import ecodes | |
mouse_file = '/dev/input/event6' | |
keyboard_file = '/dev/input/event9' | |
down = 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import math | |
import statistics | |
import copy | |
centroids = [(2, 2), (-2, -2)] | |
data_points = [ \ | |
(-1.88, 2.05), \ | |
(-0.71, 0.42), \ | |
(2.41, -0.67), \ | |
(1.85, -3.80), \ |
NewerOlder