import { Pixel } from './Pixel'; /** * Pixel Range */ export declare class PixelRange { /** * Top left pixel */ private topLeft; /** * Bottom right pixel */ private bottomRight; /** * Constructor * * @param topLeft * top left pixel * @param bottomRight * bottom right pixel */ constructor(topLeft: Pixel, bottomRight: Pixel); /** * Get the top left pixel * * @return top left pixel */ getTopLeft(): Pixel; /** * Set the top left pixel * * @param topLeft * top left pixel */ setTopLeft(topLeft: Pixel): void; /** * Get the bottom right pixel * * @return bottom right pixel */ getBottomRight(): Pixel; /** * Set the bottom right pixel * * @param bottomRight * bottom right pixel */ setBottomRight(bottomRight: Pixel): void; /** * Get the minimum x pixel * * @return minimum x pixel */ getMinX(): number; /** * Get the minimum y pixel * * @return minimum y pixel */ getMinY(): number; /** * Get the maximum x pixel * * @return maximum x pixel */ getMaxX(): number; /** * Get the maximum y pixel * * @return maximum y pixel */ getMaxY(): number; /** * Get the left pixel * * @return left pixel */ getLeft(): number; /** * Get the top pixel * * @return top pixel */ getTop(): number; /** * Get the right pixel * * @return right pixel */ getRight(): number; /** * Get the bottom pixel * * @return bottom pixel */ getBottom(): number; /** * Get the pixel width * * @return pixel width */ getWidth(): number; /** * Get the pixel height * * @return pixel height */ getHeight(): number; } //# sourceMappingURL=PixelRange.d.ts.map