Lines Matching refs:x
29 public float x; field in Float2
36 this.x = data.x; in Float2()
40 public Float2(float x, float y) { in Float2() argument
41 this.x = x; in Float2()
54 res.x = a.x + b.x; in add()
66 x += value.x; in add()
76 x += value; in add()
89 res.x = a.x + b; in add()
101 x -= value.x; in sub()
114 res.x = a.x - b.x; in sub()
126 x -= value; in sub()
139 res.x = a.x - b; in sub()
151 x *= value.x; in mul()
164 res.x = a.x * b.x; in mul()
176 x *= value; in mul()
189 res.x = a.x * b; in mul()
201 x /= value.x; in div()
214 res.x = a.x / b.x; in div()
226 x /= value; in div()
239 res.x = a.x / b; in div()
252 return (x * a.x) + (y * a.y); in dotProduct()
263 return (b.x * a.x) + (b.y * a.y); in dotProduct()
273 x += a.x * factor; in addMultiple()
283 this.x = a.x; in set()
291 x = -x; in negate()
310 return x + y; in elementSum()
322 return x; in get()
339 x = value; in setAt()
358 x += value; in addAt()
374 public void setValues(float x, float y) { in setValues() argument
375 this.x = x; in setValues()
386 data[offset] = x; in copyTo()