51 SbVec3i32(
const int32_t v[3]) { vec[0] = v[0]; vec[1] = v[1]; vec[2] = v[2]; }
52 SbVec3i32(int32_t x, int32_t y, int32_t z) { vec[0] = x; vec[1] = y; vec[2] = z; }
59 SbVec3i32 & setValue(
const int32_t v[3]) { vec[0] = v[0]; vec[1] = v[1]; vec[2] = v[2];
return *
this; }
60 SbVec3i32 & setValue(int32_t x, int32_t y, int32_t z) { vec[0] = x; vec[1] = y; vec[2] = z;
return *
this; }
67 const int32_t * getValue(
void)
const {
return vec; }
68 void getValue(int32_t & x, int32_t & y, int32_t & z)
const { x = vec[0]; y = vec[1]; z = vec[2]; }
73 int32_t dot(
const SbVec3i32 & v)
const {
return vec[0] * v[0] + vec[1] * v[1] + vec[2] * v[2]; }
74 void negate(
void) { vec[0] = -vec[0]; vec[1] = -vec[1]; vec[2] = -vec[2]; }
78 SbVec3i32 &
operator /= (
int d) { SbDividerChk(
"SbVec3i32::operator/=(int)", d); vec[0] /= d; vec[1] /= d; vec[2] /= d;
return *
this; }