Lines Matching refs:x
24 public float x; field in Float2
31 this.x = data.x; in Float2()
35 public Float2(float x, float y) { in Float2() argument
36 this.x = x; in Float2()
49 res.x = a.x + b.x; in add()
61 x += value.x; in add()
71 x += value; in add()
84 res.x = a.x + b; in add()
96 x -= value.x; in sub()
109 res.x = a.x - b.x; in sub()
121 x -= value; in sub()
134 res.x = a.x - b; in sub()
146 x *= value.x; in mul()
159 res.x = a.x * b.x; in mul()
171 x *= value; in mul()
184 res.x = a.x * b; in mul()
196 x /= value.x; in div()
209 res.x = a.x / b.x; in div()
221 x /= value; in div()
234 res.x = a.x / b; in div()
247 return (x * a.x) + (y * a.y); in dotProduct()
258 return (b.x * a.x) + (b.y * a.y); in dotProduct()
268 x += a.x * factor; in addMultiple()
278 this.x = a.x; in set()
286 x = -x; in negate()
305 return x + y; in elementSum()
317 return x; in get()
334 x = value; in setAt()
353 x += value; in addAt()
369 public void setValues(float x, float y) { in setValues() argument
370 this.x = x; in setValues()
381 data[offset] = x; in copyTo()