HomeSort by relevance Sort by last modified time
    Searched refs:yAmount (Results 1 - 9 of 9) sorted by null

  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
Sprite.java 237 public void translateY (float yAmount) {
238 y += yAmount;
243 vertices[Y1] += yAmount;
244 vertices[Y2] += yAmount;
245 vertices[Y3] += yAmount;
246 vertices[Y4] += yAmount;
251 public void translate (float xAmount, float yAmount) {
253 y += yAmount;
259 vertices[Y1] += yAmount;
262 vertices[Y2] += yAmount;
    [all...]
PolygonSprite.java 124 public void translateY (float yAmount) {
125 y += yAmount;
131 vertices[i] += yAmount;
136 public void translate (float xAmount, float yAmount) {
138 y += yAmount;
145 vertices[i + 1] += yAmount;
TextureRegion.java 232 * @param yAmount The percentage to offset vertically. This is done in texture space, so up is negative. */
233 public void scroll (float xAmount, float yAmount) {
239 if (yAmount != 0) {
241 v = (v + yAmount) % 1;
BitmapFontCache.java 90 * @param yAmount The amount in y to move the text */
91 public void translate (float xAmount, float yAmount) {
92 if (xAmount == 0 && yAmount == 0) return;
95 yAmount = Math.round(yAmount);
98 y += yAmount;
105 vertices[ii + 1] += yAmount;
ParticleEmitter.java 592 float yAmount = y - this.y;
595 if (active[i]) particles[i].translate(xAmount, yAmount);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
Canvas.py 79 def move(self, xamount, yamount):
80 self.canvas.move(self.id, xamount, yamount)
180 def move(self, xAmount, yAmount):
181 self._do('move', xAmount, yAmount)
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Canvas.py 79 def move(self, xamount, yamount):
80 self.canvas.move(self.id, xamount, yamount)
180 def move(self, xAmount, yAmount):
181 self._do('move', xAmount, yAmount)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Canvas.py 79 def move(self, xamount, yamount):
80 self.canvas.move(self.id, xamount, yamount)
180 def move(self, xAmount, yAmount):
181 self._do('move', xAmount, yAmount)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Canvas.py 79 def move(self, xamount, yamount):
80 self.canvas.move(self.id, xamount, yamount)
180 def move(self, xAmount, yAmount):
181 self._do('move', xAmount, yAmount)

Completed in 461 milliseconds