Lines Matching defs:pivot
278 void UIView::Rotate(int16_t angle, const Vector2<float>& pivot)
280 Vector3<float> pivotStart3D = Vector3<float>(pivot.x_, pivot.y_, 0);
281 Vector3<float> pivotEnd3D = Vector3<float>(pivot.x_, pivot.y_, 1.0f);
304 void UIView::Scale(const Vector2<float>& scale, const Vector2<float>& pivot)
307 Vector3<float> pivot3D = Vector3<float>(pivot.x_, pivot.y_, 0);
311 void UIView::Scale(const Vector3<float>& scale, const Vector3<float>& pivot)
320 transMap_->Scale(scale, pivot);