Checks if the given coordinates represent any configured device.
bool isDevice(Device device, double cx, double cy) { final x = device.aspectRatio; final y = device.ratio(cx, cy); return x > y; }