/** Clamps UV coordinates to texture bounds. */ export declare class TextureClamp { /** Clamps UV coordinates to [0, 1] and converts to integer texel coordinates. */ clamp(u: number, v: number, texWidth: number, texHeight: number): { x: number; y: number; }; } //# sourceMappingURL=TextureClamp.d.ts.map