吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1310|回复: 3
收起左侧

[求助] 为什么 动了一下就不动了?

[复制链接]
冥界3大法王 发表于 2020-11-15 11:56
本帖最后由 冥界3大法王 于 2020-11-15 14:08 编辑

录制_2020_11_15_14_08_09_176.gif
[Delphi] 纯文本查看 复制代码
unit Unit1;

interface

uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
  System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, acPNG,
  Vcl.ExtCtrls, Vcl.StdCtrls, sLabel;

type
  TForm1 = class(TForm)
    sLabel1: TsLabel;
    Timer1: TTimer;
    Image1: TImage;
    procedure Timer1Timer(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}
uses
  Math;

procedure TForm1.Timer1Timer(Sender: TObject);
var
  PI: Float32;
  DuShu: Integer;
begin
  PI := 3.1415926;
  DuShu := 0;
  if Image1.Left <> 0 then
  begin
    DuShu := DuShu + 10;
    Image1.Left := 240 + Ceil(5 * cos(DuShu * PI / 180));
    Image1.Top := 240 + Ceil(5 * sin(DuShu * PI / 180));
  end;
end;

end.



//三角函数以及求圆上的任意一点
//圆心坐标:(x0,y0)   240,208
//半径:5
//角度:10
//圆周率: PI
//则圆上任一点为:(x1,y1)
//x1 = 240 + 5 * cos(10 * PI /180 )
//y1 = 240 + 5 * sin(10 * PI /180 )


image.png

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

zfzhhh 发表于 2020-11-15 12:19

&#160;&#160;DuShu: Integer;
这行定义,你放到全局变量即可
放到&#160;&#160;Form1: TForm1;
下面

免费评分

参与人数 1吾爱币 +1 收起 理由
冥界3大法王 + 1 用心讨论,共获提升!

查看全部评分

shr123 发表于 2020-11-15 12:44
 楼主| 冥界3大法王 发表于 2020-11-15 14:01
本帖最后由 冥界3大法王 于 2020-11-15 14:10 编辑
zfzhhh 发表于 2020-11-15 12:19
  DuShu: Integer;
这行定义,你放到全局变量即可
放到  Form1: TForm1;

[Delphi] 纯文本查看 复制代码
unit Unit1;

interface

uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
  System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, acPNG,
  Vcl.ExtCtrls, Vcl.StdCtrls, sLabel, acImage;

type
  TForm1 = class(TForm)
    sLabel1: TsLabel;
    Timer1: TTimer;
    Image1: TImage;
    Image2: TsImage;
    procedure Timer1Timer(Sender: TObject);
    procedure FormCreate(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;
  DuShu: Integer;

implementation

{$R *.dfm}
uses
  Math;

procedure TForm1.FormCreate(Sender: TObject);
begin
  DuShu := 0;
end;

procedure TForm1.Timer1Timer(Sender: TObject);
var
  PI: Float32;
//  DuShu: Integer;
begin
  PI := 3.1415926;
//  DuShu := 0;
  if sLabel1.Left > 0 then
  begin
//    ShowMessage(IntToStr(DuShu));
    Image1.Left := 240 + Ceil(50 * cos(DuShu * PI / 180));
    Image1.Top := 208 + Ceil(50 * sin(DuShu * PI / 180));

    Image2.Left := 240 + Ceil(200 * cos(DuShu * PI / 180));
    Image2.Top := 208 + Ceil(200 * sin(DuShu * PI / 180));
    DuShu := DuShu + 10;
  end;
end;

end.

这次好了,两只蛇做同心圆 运动。
录制_2020_11_15_14_08_09_176.gif
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-26 11:54

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表