Lines Matching refs:trans
207 Matrix3 CreateTranslation(const Vector2& trans)
212 { trans.x_, trans.y_, 1.0f },
264 Matrix4 CreateTranslation(const Vector3& trans)
270 { trans.x_, trans.y_, trans.z_, 1.0f },
279 Vector3 trans;
280 trans.x_ = -Vector3::Dot(xaxis, eye);
281 trans.y_ = -Vector3::Dot(yaxis, eye);
282 trans.z_ = -Vector3::Dot(zaxis, eye);
288 { trans.x_, trans.y_, trans.z_, 1.0f }