40 SbVec2us(
const unsigned short v[2]) { vec[0] = v[0]; vec[1] = v[1]; }
41 SbVec2us(
unsigned short x,
unsigned short y) { vec[0] = x; vec[1] = y; }
46 SbVec2us & setValue(
const unsigned short v[2]) { vec[0] = v[0]; vec[1] = v[1];
return *
this; }
47 SbVec2us & setValue(
unsigned short x,
unsigned short y) { vec[0] = x; vec[1] = y;
return *
this; }
52 const unsigned short * getValue(
void)
const {
return vec; }
53 void getValue(
unsigned short & x,
unsigned short & y)
const { x = vec[0]; y = vec[1]; }
56 const unsigned short &
operator [] (
int i)
const {
return vec[
i]; }
58 int32_t dot(
SbVec2us v)
const {
return vec[0] * v[0] + vec[1] * v[1]; }
63 SbVec2us &
operator /= (
int d) { SbDividerChk(
"SbVec2us::operator/=(int)", d); vec[0] /= d; vec[1] /= d;
return *
this; }
70 unsigned short vec[2];