Lines Matching refs:y
25 public float y; field in Float2
32 this.y = data.y; in Float2()
35 public Float2(float x, float y) { in Float2() argument
37 this.y = y; in Float2()
50 res.y = a.y + b.y; in add()
62 y += value.y; in add()
72 y += value; in add()
85 res.y = a.y + b; in add()
97 y -= value.y; in sub()
110 res.y = a.y - b.y; in sub()
122 y -= value; in sub()
135 res.y = a.y - b; in sub()
147 y *= value.y; in mul()
160 res.y = a.y * b.y; in mul()
172 y *= value; in mul()
185 res.y = a.y * b; in mul()
197 y /= value.y; in div()
210 res.y = a.y / b.y; in div()
222 y /= value; in div()
235 res.y = a.y / 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()
269 y += a.y * factor; in addMultiple()
279 this.y = a.y; in set()
287 y = -y; in negate()
305 return x + y; in elementSum()
319 return y; in get()
337 y = value; in setAt()
356 y += value; in addAt()
369 public void setValues(float x, float y) { in setValues() argument
371 this.y = y; in setValues()
382 data[offset + 1] = y; in copyTo()