gramoloss
Version:
Graph theory package for edition and computation
14 lines (13 loc) • 361 B
TypeScript
import { Coord } from "./coord";
export declare class Rectangle {
c1: Coord;
c2: Coord;
color: string;
index: number;
constructor(c1: Coord, c2: Coord, color: string, index: number);
getValue(param: string): any;
top_right_corner(): Coord;
bot_left_corner(): Coord;
top_left_corner(): Coord;
bot_right_corner(): Coord;
}