Lines Matching refs:y
30 public float y; field in Float3
38 this.y = data.y; in Float3()
42 public Float3(float x, float y, float z) { in Float3() argument
44 this.y = y; in Float3()
58 res.y = a.y + b.y; in add()
71 y += value.y; in add()
82 y += value; in add()
96 res.y = a.y + b; in add()
109 y -= value.y; in sub()
123 res.y = a.y - b.y; in sub()
136 y -= value; in sub()
150 res.y = a.y - b; in sub()
163 y *= value.y; in mul()
177 res.y = a.y * b.y; in mul()
190 y *= value; in mul()
204 res.y = a.y * b; in mul()
217 y /= value.y; in div()
231 res.y = a.y / b.y; in div()
244 y /= value; in div()
258 res.y = a.y / b; in div()
271 return new Float((x * a.x) + (y * a.y) + (z * a.z)); in dotProduct()
282 return new Float((b.x * a.x) + (b.y * a.y) + (b.z * a.z)); in dotProduct()
293 y += a.y * factor; in addMultiple()
304 this.y = a.y; in set()
313 y = -y; in negate()
332 return new Float(x + y + z); in elementSum()
346 return y; in get()
366 y = value; in setAt()
388 y += value; in addAt()
405 public void setValues(float x, float y, float z) { in setValues() argument
407 this.y = y; in setValues()
419 data[offset + 1] = y; in copyTo()