Home | History | Annotate | Download | only in shape

Lines Matching defs:height

42  * side is located at the width/height coordinates (width, height, 0).
49 private float height;
58 * Create a quad with the given width and height. The quad
62 * @param height The Y extent or width
64 public Quad(float width, float height){
65 updateGeometry(width, height);
69 * Create a quad with the given width and height. The quad
73 * @param height The Y extent or width
77 public Quad(float width, float height, boolean flipCoords){
78 updateGeometry(width, height, flipCoords);
82 return height;
89 public void updateGeometry(float width, float height){
90 updateGeometry(width, height, false);
93 public void updateGeometry(float width, float height, boolean flipCoords) {
95 this.height = height;
98 width, height, 0,
99 0, height, 0
118 if (height < 0){