Package net.minecraft.client.gui
Record Class ScreenRect
java.lang.Object
java.lang.Record
net.minecraft.client.gui.ScreenRect
- Record Components:
position
-width
-height
-
@Environment(CLIENT)
public record ScreenRect(ScreenPos position, int width, int height)
extends Record
A rectangle on the screen.
- Mappings:
Namespace Name named net/minecraft/client/gui/ScreenRect
intermediary net/minecraft/class_8030
official flm
named position
intermediary comp_1195
official a
named width
intermediary comp_1196
official b
named height
intermediary comp_1197
official c
-
Field Summary
-
Constructor Summary
ConstructorDescriptionScreenRect
(int sameAxis, int otherAxis, int width, int height) ScreenRect
(ScreenPos screenPos, int int2, int int3) -
Method Summary
Modifier and TypeMethodDescriptionadd
(NavigationDirection direction) Returns a new rect of the same dimensions with the position incremented.boolean
contains
(int x, int y) static ScreenRect
empty()
Returns an empty rect.final boolean
Indicates whether some other object is "equal to" this one.getBorder
(NavigationDirection direction) Returns a rect representing the border of this rect in the givendirection
.int
int
getBoundingCoordinate
(NavigationDirection direction) Returns the coordinate of the bounding box in the givendirection
.int
getCenter
(NavigationAxis axis) Returns the center of this rect in the givenaxis
.int
getLeft()
int
getLength
(NavigationAxis axis) Returns the length of the rect in the givenaxis
.int
getRight()
int
getTop()
final int
hashCode()
Returns a hash code value for this object.int
height()
Returns the value of theheight
record component.intersection
(ScreenRect other) Returns the rect that intersects withother
, ornull
if they do not intersect.static ScreenRect
of
(NavigationAxis axis, int sameAxisCoord, int otherAxisCoord, int sameAxisLength, int otherAxisLength) Returns a new rect.boolean
overlaps
(ScreenRect other) Returns whether this rect overlaps withrect
in both axes.boolean
overlaps
(ScreenRect other, NavigationAxis axis) Returns whether this rect overlaps withrect
inaxis
.position()
Returns the value of theposition
record component.final String
toString()
Returns a string representation of this record class.int
width()
Returns the value of thewidth
record component.
-
Field Details
-
position
The field for theposition
record component. -
width
private final int widthThe field for thewidth
record component. -
height
private final int heightThe field for theheight
record component. -
EMPTY
- Mappings:
Namespace Name Mixin selector named EMPTY
Lnet/minecraft/client/gui/ScreenRect;EMPTY:Lnet/minecraft/client/gui/ScreenRect;
intermediary field_41835
Lnet/minecraft/class_8030;field_41835:Lnet/minecraft/class_8030;
official d
Lflm;d:Lflm;
-
-
Constructor Details
-
ScreenRect
public ScreenRect(int sameAxis, int otherAxis, int width, int height) - Mappings:
Namespace Name Mixin selector named <init>
Lnet/minecraft/client/gui/ScreenRect;<init>(IIII)V
intermediary <init>
Lnet/minecraft/class_8030;<init>(IIII)V
official <init>
Lflm;<init>(IIII)V
-
ScreenRect
-
-
Method Details
-
empty
Returns an empty rect.- Returns:
- an empty rect
- Mappings:
Namespace Name Mixin selector named empty
Lnet/minecraft/client/gui/ScreenRect;empty()Lnet/minecraft/client/gui/ScreenRect;
intermediary method_48248
Lnet/minecraft/class_8030;method_48248()Lnet/minecraft/class_8030;
official a
Lflm;a()Lflm;
-
overlaps
Returns whether this rect overlaps withrect
in both axes.- Returns:
- whether this rect overlaps with
rect
in both axes - Mappings:
Namespace Name Mixin selector named overlaps
Lnet/minecraft/client/gui/ScreenRect;overlaps(Lnet/minecraft/client/gui/ScreenRect;)Z
intermediary method_48252
Lnet/minecraft/class_8030;method_48252(Lnet/minecraft/class_8030;)Z
official a
Lflm;a(Lflm;)Z
-
intersection
Returns the rect that intersects withother
, ornull
if they do not intersect.- Returns:
- the rect that intersects with
other
, ornull
if they do not intersect - Mappings:
Namespace Name Mixin selector named intersection
Lnet/minecraft/client/gui/ScreenRect;intersection(Lnet/minecraft/client/gui/ScreenRect;)Lnet/minecraft/client/gui/ScreenRect;
intermediary method_49701
Lnet/minecraft/class_8030;method_49701(Lnet/minecraft/class_8030;)Lnet/minecraft/class_8030;
official b
Lflm;b(Lflm;)Lflm;
-
getTop
public int getTop()- Mappings:
Namespace Name Mixin selector named getTop
Lnet/minecraft/client/gui/ScreenRect;getTop()I
intermediary method_49618
Lnet/minecraft/class_8030;method_49618()I
official b
Lflm;b()I
-
getBottom
public int getBottom()- Mappings:
Namespace Name Mixin selector named getBottom
Lnet/minecraft/client/gui/ScreenRect;getBottom()I
intermediary method_49619
Lnet/minecraft/class_8030;method_49619()I
official c
Lflm;c()I
-
getLeft
public int getLeft()- Mappings:
Namespace Name Mixin selector named getLeft
Lnet/minecraft/client/gui/ScreenRect;getLeft()I
intermediary method_49620
Lnet/minecraft/class_8030;method_49620()I
official d
Lflm;d()I
-
getRight
public int getRight()- Mappings:
Namespace Name Mixin selector named getRight
Lnet/minecraft/client/gui/ScreenRect;getRight()I
intermediary method_49621
Lnet/minecraft/class_8030;method_49621()I
official e
Lflm;e()I
-
contains
public boolean contains(int x, int y) - Mappings:
Namespace Name Mixin selector named contains
Lnet/minecraft/client/gui/ScreenRect;contains(II)Z
intermediary method_58137
Lnet/minecraft/class_8030;method_58137(II)Z
official a
Lflm;a(II)Z
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
position
Returns the value of theposition
record component.- Returns:
- the value of the
position
record component
-
width
public int width()Returns the value of thewidth
record component.- Returns:
- the value of the
width
record component
-
height
public int height()Returns the value of theheight
record component.- Returns:
- the value of the
height
record component
-