Package org.lwjgl.util
Class Dimension
java.lang.Object
org.lwjgl.util.Dimension
- All Implemented Interfaces:
Serializable,ReadableDimension,WritableDimension
public final class Dimension
extends Object
implements Serializable, ReadableDimension, WritableDimension
A 2D integer Dimension class, which looks remarkably like an AWT one.
- Version:
- $Revision$ $Id$
- Author:
- $Author$
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor for Dimension.Dimension(int w, int h) Constructor for Dimension.Constructor for Dimension. -
Method Summary
Modifier and TypeMethodDescriptionbooleanChecks whether two dimension objects have equal values.intGets the height.voidgetSize(WritableDimension dest) Copy this ReadableDimension into a destination DimensionintgetWidth()Gets the width.inthashCode()Returns the hash code for thisDimension.voidsetHeight(int height) Sets the height.voidsetSize(int w, int h) voidvoidsetWidth(int width) Sets the width.toString()Returns a string representation of the values of thisDimensionobject'sheightandwidthfields.
-
Constructor Details
-
Dimension
public Dimension()Constructor for Dimension. -
Dimension
public Dimension(int w, int h) Constructor for Dimension. -
Dimension
Constructor for Dimension.
-
-
Method Details
-
setSize
public void setSize(int w, int h) - Specified by:
setSizein interfaceWritableDimension
-
setSize
- Specified by:
setSizein interfaceWritableDimension
-
getSize
Description copied from interface:ReadableDimensionCopy this ReadableDimension into a destination Dimension- Specified by:
getSizein interfaceReadableDimension- Parameters:
dest- The destination
-
equals
Checks whether two dimension objects have equal values. -
hashCode
public int hashCode()Returns the hash code for thisDimension. -
toString
Returns a string representation of the values of thisDimensionobject'sheightandwidthfields. This method is intended to be used only for debugging purposes, and the content and format of the returned string may vary between implementations. The returned string may be empty but may not benull. -
getHeight
public int getHeight()Gets the height.- Specified by:
getHeightin interfaceReadableDimension- Returns:
- Returns a int
-
setHeight
public void setHeight(int height) Sets the height.- Specified by:
setHeightin interfaceWritableDimension- Parameters:
height- The height to set
-
getWidth
public int getWidth()Gets the width.- Specified by:
getWidthin interfaceReadableDimension- Returns:
- Returns a int
-
setWidth
public void setWidth(int width) Sets the width.- Specified by:
setWidthin interfaceWritableDimension- Parameters:
width- The width to set
-