minecraft-src/com/mojang/blaze3d/font/SheetGlyphInfo.java
2025-07-04 01:41:11 +03:00

41 lines
748 B
Java

package com.mojang.blaze3d.font;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
@Environment(EnvType.CLIENT)
public interface SheetGlyphInfo {
int getPixelWidth();
int getPixelHeight();
void upload(int xOffset, int yOffset);
boolean isColored();
float getOversample();
default float getLeft() {
return this.getBearingLeft();
}
default float getRight() {
return this.getLeft() + this.getPixelWidth() / this.getOversample();
}
default float getTop() {
return 7.0F - this.getBearingTop();
}
default float getBottom() {
return this.getTop() + this.getPixelHeight() / this.getOversample();
}
default float getBearingLeft() {
return 0.0F;
}
default float getBearingTop() {
return 7.0F;
}
}