Lines Matching refs:Byte3
24 public class Byte3 { class
29 public Byte3() { in Byte3() method in Byte3
32 public Byte3(byte initX, byte initY, byte initZ) { in Byte3() method in Byte3
39 public Byte3(Byte3 source) { in Byte3() method in Byte3
50 public void add(Byte3 a) { in add()
63 public static Byte3 add(Byte3 a, Byte3 b) { in add()
64 Byte3 result = new Byte3(); in add()
90 public static Byte3 add(Byte3 a, byte b) { in add()
91 Byte3 result = new Byte3(); in add()
104 public void sub(Byte3 a) { in sub()
117 public static Byte3 sub(Byte3 a, Byte3 b) { in sub()
118 Byte3 result = new Byte3(); in sub()
144 public static Byte3 sub(Byte3 a, byte b) { in sub()
145 Byte3 result = new Byte3(); in sub()
158 public void mul(Byte3 a) { in mul()
171 public static Byte3 mul(Byte3 a, Byte3 b) { in mul()
172 Byte3 result = new Byte3(); in mul()
198 public static Byte3 mul(Byte3 a, byte b) { in mul()
199 Byte3 result = new Byte3(); in mul()
212 public void div(Byte3 a) { in div()
225 public static Byte3 div(Byte3 a, Byte3 b) { in div()
226 Byte3 result = new Byte3(); in div()
252 public static Byte3 div(Byte3 a, byte b) { in div()
253 Byte3 result = new Byte3(); in div()
285 public byte dotProduct(Byte3 a) { in dotProduct()
296 public static byte dotProduct(Byte3 a, Byte3 b) { in dotProduct()
306 public void addMultiple(Byte3 a, byte factor) { in addMultiple()
317 public void set(Byte3 a) { in set()