Module technology.sola.engine
Record Class AspectRatioSizing
java.lang.Object
java.lang.Record
technology.sola.engine.graphics.screen.AspectRatioSizing
- Record Components:
x- the x coordinate where rendering beginsy- the y coordinate where rendering beginswidth- the width to render withinheight- the height to render within
AspectRatioSizing contains the top, left coordinate for where rendering will begin as well as the width and height
of the space to render in.
-
Constructor Summary
ConstructorsConstructorDescriptionAspectRatioSizing(int x, int y, int width, int height) Creates an instance of aAspectRatioSizingrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intheight()Returns the value of theheightrecord component.final StringtoString()Returns a string representation of this record class.intwidth()Returns the value of thewidthrecord component.intx()Returns the value of thexrecord component.inty()Returns the value of theyrecord component.
-
Constructor Details
-
AspectRatioSizing
public AspectRatioSizing(int x, int y, int width, int height) Creates an instance of aAspectRatioSizingrecord class.
-
-
Method Details
-
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. All components in this record class are compared with '=='. -
x
public int x()Returns the value of thexrecord component.- Returns:
- the value of the
xrecord component
-
y
public int y()Returns the value of theyrecord component.- Returns:
- the value of the
yrecord component
-
width
public int width()Returns the value of thewidthrecord component.- Returns:
- the value of the
widthrecord component
-
height
public int height()Returns the value of theheightrecord component.- Returns:
- the value of the
heightrecord component
-