繁体   English   中英

WPF DoubleAnimation 旋转方向无 storyboard

[英]WPF DoubleAnimation rotation direction without storyboard

我有一个 UserControl,需要根据我在 canvas 中接收到的外部信息(X、Y 和角度,单位为度数)旋转和平移,我在其中动态地添加用户控件。

我使用双动画和一个 trasnformgroup 来做到这一点。

我遇到的问题是,当对象需要更新其 position 从角度 > 0 到角度 < 360,例如从 5° 旋转到 355° 时,animation 更喜欢逆时针旋转而不是顺时针旋转,我需要.

这是代码的一部分,其中 body 是我添加到 canvas 的 UserControl:

var bodymove = new TranslateTransform();
var bodygrp = new TransformGroup();
bodygrp.Children.Add(bodyrot);
bodygrp.Children.Add(bodymove);
body.RenderTransform = bodygrp;


private void RotateBody(AgvStatus status, Duration duration, double newx, double newy)
{
    // correct bouncing around zero degrees
    if (-lastangle[status.Agv - 1] >= 0 && status.Angle < 360 && status.Angle > 355)
    {
        status.Angle = -lastangle[status.Agv - 1];
    }
    // Set and begin AGV bodyrot
    DoubleAnimation animrot = new DoubleAnimation(lastangle[status.Agv - 1], -status.Angle, duration); 
    bodyrot.BeginAnimation(RotateTransform.AngleProperty, animrot);
    lastangle[status.Agv - 1] = -status.Angle;
}

如果我收到在零附近反弹的角度,我设法纠正,所以控制停止来回旋转,例如,如果我收到 0 然后 360 然后 0 然后 360 等等......

我无法纠正的是,如果 object 从大于零的 position 开始并到达小于 360 的位置(顺时针旋转),在程序中它逆时针旋转。

对于这个 animation,我没有 storyboard。

因此,感谢@GazTheDestroyer 评论,如果旋转必须从角度<= 360 逆时针旋转,我设法解决了超过 360 的问题,如果旋转必须顺时针旋转,角度从 0 度以上开始,则低于 0 角度:

private void RotateBody(AgvStatus status, Duration duration)
{
    // correct rotation if new angle received (status.Angle) is bouncing around 0/360 degrees
    var destAngle = 0d;
    var lastAngle = lastangle[status.Agv - 1];
    if (-lastAngle >= 0 && -lastAngle <= 2 && status.Angle > 358)
    {
        destAngle = 0;
    }
    else if (-lastAngle <= 360 && -lastAngle >= 358 && status.Angle > 0 && status.Angle < 2)
    {
        destAngle = 360;
    }
    else if (-lastAngle >= 0 && -lastAngle <= 15 && status.Angle <= 360 && status.Angle >= 340)
    {
        destAngle = 360 - status.Angle;
    }
    else if (-lastAngle <= 360 && -lastAngle >= 345 && status.Angle >= 0 && status.Angle <= 15)
    {
        destAngle = 360 + status.Angle;
    }
    else
    {
        destAngle = status.Angle;
    }

    var animrot = new DoubleAnimation(lastangle[status.Agv - 1], -destAngle, duration); // Set and begin AGV bodyrot
    bodyrot.BeginAnimation(RotateTransform.AngleProperty, animrot);
    lastangle[status.Agv - 1] = -status.Angle;
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM