public final class DotProductsInt extends Object
| Modifier and Type | Method | Description |
|---|---|---|
static int |
dotProduct2(int x0,
int y0,
int x1,
int y1) |
Calculate the dot product of
(x0, y0) and (x1, y1). |
static int |
dotProduct3(int x0,
int y0,
int z0,
int x1,
int y1,
int z1) |
Calculate the dot product of
(x0, y0, z0) and (x1, y1, z1). |
static int |
dotProduct4(int x0,
int y0,
int z0,
int w0,
int x1,
int y1,
int z1,
int w1) |
Calculate the dot product of
(x0, y0, z0, w0) and (x1, y1, z1, w1). |
public static int dotProduct4(int x0,
int y0,
int z0,
int w0,
int x1,
int y1,
int z1,
int w1)
(x0, y0, z0, w0) and (x1, y1, z1, w1).x0 - The X component of the first vectory0 - The Y component of the first vectorz0 - The Z component of the first vectorw0 - The W component of the first vectorx1 - The X component of the second vectory1 - The Y component of the second vectorz1 - The Z component of the second vectorw1 - The W component of the second vectorpublic static int dotProduct3(int x0,
int y0,
int z0,
int x1,
int y1,
int z1)
(x0, y0, z0) and (x1, y1, z1).x0 - The X component of the first vectory0 - The Y component of the first vectorz0 - The Z component of the first vectorx1 - The X component of the second vectory1 - The Y component of the second vectorz1 - The Z component of the second vectorpublic static int dotProduct2(int x0,
int y0,
int x1,
int y1)
(x0, y0) and (x1, y1).x0 - The X component of the first vectory0 - The Y component of the first vectorx1 - The X component of the second vectory1 - The Y component of the second vectorCopyright © 2017 <code@io7m.com> http://io7m.com