Home | History | Annotate | Download | only in renderscript

Lines Matching defs:Int3

23 public class Int3 {
28 public Int3() {
32 public Int3(int i) {
36 public Int3(int x, int y, int z) {
43 public Int3(Int3 source) {
54 public void add(Int3 a) {
67 public static Int3 add(Int3 a, Int3 b) {
68 Int3 result = new Int3();
94 public static Int3 add(Int3 a, int b) {
95 Int3 result = new Int3();
108 public void sub(Int3 a) {
121 public static Int3 sub(Int3 a, Int3 b) {
122 Int3 result = new Int3();
148 public static Int3 sub(Int3 a, int b) {
149 Int3 result = new Int3();
162 public void mul(Int3 a) {
175 public static Int3 mul(Int3 a, Int3 b) {
176 Int3 result = new Int3();
202 public static Int3 mul(Int3 a, int b) {
203 Int3 result = new Int3();
216 public void div(Int3 a) {
229 public static Int3 div(Int3 a, Int3 b) {
230 Int3 result = new Int3();
256 public static Int3 div(Int3 a, int b) {
257 Int3 result = new Int3();
270 public void mod(Int3 a) {
283 public static Int3 mod(Int3 a, Int3 b) {
284 Int3 result = new Int3();
310 public static Int3 mod(Int3 a, int b) {
311 Int3 result = new Int3();
343 public int dotProduct(Int3 a) {
354 public static int dotProduct(Int3 a, Int3 b) {
364 public void addMultiple(Int3 a, int factor) {
371 * set vector value by Int3
375 public void set(Int3 a) {