• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2024 The Chromium Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import dataclasses
6
7
8@dataclasses.dataclass(frozen=True)
9# Represents a single point on a screen.
10class Point:
11  # The offset in pixels from the left edge of the screen.
12  x: int
13  # The offset in pixels from the top edge of the screen.
14  y: int
15