如何将值转换为 CGPoint?

发布于 2024-11-04 05:16:06 字数 172 浏览 2 评论 0原文

我的 Xcode 项目有问题,希望你能帮助我! 我刚刚开始编码,所以我的问题应该很容易解决。

我想用两个球拍和一个球制作一个乒乓球游戏。我有一个介于 0 和 1 之间的值。如果该值很高,桨也应该上升。可以使用“CGPoint”更改桨位置,但如何将我的值转换为点?

请帮我。 来自德国的感谢和问候:)

I´ve got a problem with my Xcode-Project and hope you can help me!
I just began coding, so my problem should be very easy to solve.

I wanna make a Pong Game with two paddles and a ball. I have got a value, which is between 0 and 1. If the value is high the paddle should also go up. The paddle position can be changed with "CGPoint", but how can I convert my value to a point?

Please help me.
Thanks and greets from Germany :)

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

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

发布评论

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

评论(3

静谧 2024-11-11 05:16:06

CGPoint 是一个二维点。

struct CGPoint {
  CGFloat x;
  CGFloat y;
};
typedef struct CGPoint CGPoint;

您可以使用 CGPointMake(x,y) 创建一个 CGPoint。
当您的值介于 0 和 1 之间时,您可能需要通过乘以常数因子来缩放 x 或 y。

CGPoint is a 2-dimensional point.

struct CGPoint {
  CGFloat x;
  CGFloat y;
};
typedef struct CGPoint CGPoint;

You can create a CGPoint with CGPointMake(x,y).
When your value is between 0 and 1 you may want to scale either x or y by multiplying with a constant factor.

谜兔 2024-11-11 05:16:06

我对桨控制有一个更好的想法:

您可以使用用户触摸输入来控制桨:

- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {

    UITouch *touch = [touches anyObject];
    CGPoint pointToMove = [touch locationInView:self.view];

    yourImage.center = CGPointMake(yourImage.center.x, pointToMove.y);

}

当用户触摸屏幕时,桨移动到触摸的 .y 位置,但保持在默认的 x 坐标上!

这样,控制就会更加流畅。试试吧!

Viel Spass beim 程序 :D

I have a better idea for the paddle controll:

You can use the users touch imput to controll the paddle:

- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {

    UITouch *touch = [touches anyObject];
    CGPoint pointToMove = [touch locationInView:self.view];

    yourImage.center = CGPointMake(yourImage.center.x, pointToMove.y);

}

When the user touches the screen, the paddle moves to the .y position of the touch but stays on its defaulf x cordinates!

That way, the controlls would be more fluid. Just try it out!

Viel Spass beim programmieren :D

献世佛 2024-11-11 05:16:06

这是我的应用程序中完成这项工作的确切代码

for (id obj in points) {
[self moveToPoint:[((NSValue*) obj) CGPointValue]];

This is exact code from my app to do this job

for (id obj in points) {
[self moveToPoint:[((NSValue*) obj) CGPointValue]];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文