Skip to content

Vector

typescript
interface Vector {
  readonly x: number;
  readonly y: number;
}