com.jme3.font
クラス Rectangle

java.lang.Object
  上位を拡張 com.jme3.font.Rectangle
すべての実装されたインタフェース:
java.lang.Cloneable

public class Rectangle
extends java.lang.Object
implements java.lang.Cloneable

Defines a rectangle that can constrict a text paragraph.


フィールドの概要
 float height
           
 float width
           
 float x
           
 float y
           
 
コンストラクタの概要
Rectangle(float x, float y, float width, float height)
           
 
メソッドの概要
 Rectangle clone()
           
 
クラス java.lang.Object から継承されたメソッド
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

フィールドの詳細

x

public final float x

y

public final float y

width

public final float width

height

public final float height
コンストラクタの詳細

Rectangle

public Rectangle(float x,
                 float y,
                 float width,
                 float height)
パラメータ:
x - the X value of the upper left corner of the rectangle
y - the Y value of the upper left corner of the rectangle
width - the width of the rectangle
height - the height of the rectangle
メソッドの詳細

clone

public Rectangle clone()
オーバーライド:
クラス java.lang.Object 内の clone