UNPKG

302 BTypeScriptView Raw
1import { Range } from "./Range";
2import type { ICoordinates } from "../Core/Interfaces";
3export declare class Circle extends Range {
4 readonly radius: number;
5 constructor(x: number, y: number, radius: number);
6 contains(point: ICoordinates): boolean;
7 intersects(range: Range): boolean;
8}