Lines Matching refs:y
25 public float y; field in Float3
33 this.y = data.y; in Float3()
37 public Float3(float x, float y, float z) { in Float3() argument
39 this.y = y; in Float3()
53 res.y = a.y + b.y; in add()
66 y += value.y; in add()
77 y += value; in add()
91 res.y = a.y + b; in add()
104 y -= value.y; in sub()
118 res.y = a.y - b.y; in sub()
131 y -= value; in sub()
145 res.y = a.y - b; in sub()
158 y *= value.y; in mul()
172 res.y = a.y * b.y; in mul()
185 y *= value; in mul()
199 res.y = a.y * b; in mul()
212 y /= value.y; in div()
226 res.y = a.y / b.y; in div()
239 y /= value; in div()
253 res.y = a.y / b; in div()
266 return new Float((x * a.x) + (y * a.y) + (z * a.z)); in dotProduct()
277 return new Float((b.x * a.x) + (b.y * a.y) + (b.z * a.z)); in dotProduct()
288 y += a.y * factor; in addMultiple()
299 this.y = a.y; in set()
308 y = -y; in negate()
327 return new Float(x + y + z); in elementSum()
341 return y; in get()
361 y = value; in setAt()
383 y += value; in addAt()
400 public void setValues(float x, float y, float z) { in setValues() argument
402 this.y = y; in setValues()
414 data[offset + 1] = y; in copyTo()