Lines Matching refs:trans
138 void TransformMap::Translate(const Vector2<int16_t>& trans)
140 Translate(Vector3<int16_t>(trans.x_, trans.y_, 0));
143 void TransformMap::Translate(const Vector3<int16_t>& trans)
145 translate_ = Matrix4<float>::Translate(Vector3<float>(trans.x_, trans.y_, trans.z_));
150 void TransformMap::Translate(const Vector2<float>& trans)
152 Translate(Vector3<float>(trans.x_, trans.y_, 0));
155 void TransformMap::Translate(const Vector3<float>& trans)
157 translate_ = Matrix4<float>::Translate(trans);