49 SbVec2us(
const unsigned short v[2]) { vec[0] = v[0]; vec[1] = v[1]; }
50 SbVec2us(
unsigned short x,
unsigned short y) { vec[0] = x; vec[1] = y; }
55 SbVec2us & setValue(
const unsigned short v[2]) { vec[0] = v[0]; vec[1] = v[1];
return *
this; }
56 SbVec2us & setValue(
unsigned short x,
unsigned short y) { vec[0] = x; vec[1] = y;
return *
this; }
61 const unsigned short * getValue(
void)
const {
return vec; }
62 void getValue(
unsigned short & x,
unsigned short & y)
const { x = vec[0]; y = vec[1]; }
65 const unsigned short &
operator [] (
int i)
const {
return vec[
i]; }
67 int32_t dot(
SbVec2us v)
const {
return vec[0] * v[0] + vec[1] * v[1]; }
70 SbVec2us &
operator *= (
int d) { vec[0] = (
unsigned short)(vec[0] * d); vec[1] = (
unsigned short)(vec[1] * d);
return *
this; }
72 SbVec2us &
operator /= (
int d) { SbDividerChk(
"SbVec2us::operator/=(int)", d); vec[0] = (
unsigned short)(vec[0] / d); vec[1] = (
unsigned short)(vec[1] / d);
return *
this; }
79 unsigned short vec[2];