使用关于其他轴的旋转插值器

发布于 2024-12-27 16:04:56 字数 211 浏览 1 评论 0原文

如何制作绕 y 或 z 轴旋转的旋转插值器?到目前为止,我只能让它在 x 轴上工作,这似乎是默认的。

RotationInterpolator interpolator = new RotationInterpolator(rotationAlpha, tg, new Transform3D(), 0.0f, (float)(Math.PI/2.0));

How can I make a Rotation Interpolator that rotates about the y or z axis? I've so far only managed to get it to work about the x-axis, which seems to be the default.

RotationInterpolator interpolator = new RotationInterpolator(rotationAlpha, tg, new Transform3D(), 0.0f, (float)(Math.PI/2.0));

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心是晴朗的。 2025-01-03 16:04:56

您读过 RotationInterpolator 类的 Javadoc 了吗?

/**
 * @deprecated As of Java 3D version 1.3, replaced by
 * <code>TransformInterpolator.setTransformAxis(Transform3D)</code>
 */
 public void setAxisOfRotation(Transform3D axisOfRotation) {
    setTransformAxis(axisOfRotation);
}

Did you read the Javadoc of the class RotationInterpolator?

/**
 * @deprecated As of Java 3D version 1.3, replaced by
 * <code>TransformInterpolator.setTransformAxis(Transform3D)</code>
 */
 public void setAxisOfRotation(Transform3D axisOfRotation) {
    setTransformAxis(axisOfRotation);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文