X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=base%2Fdali-toolkit%2Fpublic-api%2Fcontrols%2Fscrollable%2Fscroll-view%2Fscroll-view-constraints.cpp;h=48b21f156955f7bcef99ef1ffccc1f39ef9c250a;hp=77613e57520c8d5ce16a8e112280e282f002de04;hb=a81e6cdec136b728115431822a2ff3f60e279045;hpb=6af5947bc891acb3ee308d9bca5f848fb69a1744 diff --git a/base/dali-toolkit/public-api/controls/scrollable/scroll-view/scroll-view-constraints.cpp b/base/dali-toolkit/public-api/controls/scrollable/scroll-view/scroll-view-constraints.cpp index 77613e5..48b21f1 100644 --- a/base/dali-toolkit/public-api/controls/scrollable/scroll-view/scroll-view-constraints.cpp +++ b/base/dali-toolkit/public-api/controls/scrollable/scroll-view/scroll-view-constraints.cpp @@ -36,19 +36,6 @@ Vector3 MoveActorConstraint(const Vector3& current, return current + scrollPositionProperty.GetVector3(); } -Vector3 MoveScaledActorConstraint(const Vector3& current, - const PropertyInput& scrollPositionProperty, - const PropertyInput& scrollScaleProperty) -{ - return scrollScaleProperty.GetVector3() * (current + scrollPositionProperty.GetVector3()); -} - -Vector3 ScaleActorConstraint(const Vector3& current, - const PropertyInput& scrollScaleProperty) -{ - return current * scrollScaleProperty.GetVector3(); -} - Vector3 WrapActorConstraint(const Vector3& current, const PropertyInput& actorScaleProperty, const PropertyInput& actorAnchorPointProperty,