測試一下內文崁入簡報 (無內容)
WP7
2011年8月29日 星期一
2011年8月17日 星期三
2011年8月16日 星期二
2011年8月13日 星期六
Projectile Motion (拋物線運動)
利用物理公式:
Vx = Vx
Vy = Vy + a*t
X = X + Vx*t
Y = Y + Vy*t + 1/2*a*t*^2
'宣告
Dim Position As Vector2
Dim V As Vector2
Dim a As Integer
'初始
Position = New Vector2(0, 420)
a = 60
V = New Vector2(150, -150)
'update
V.Y = V.Y + CInt(a * gameTime.ElapsedGameTime.TotalSeconds)
Position.X = Position.X + CInt(V.X * gameTime.ElapsedGameTime.TotalSeconds)
Position.Y = Position.Y + CInt(V.Y * gameTime.ElapsedGameTime.TotalSeconds) + CInt(0.5 * a * (gameTime.ElapsedGameTime.TotalSeconds) ^ 2)
'draw
spriteBatch.DrawString(txtFont, txt, Position, Color.Red)
影片
http://www.youtube.com/watch?v=3_k08C-Rwsw
2011年8月6日 星期六
Install WP7 SDK on WinXP
Step 1:
將下載的vm_web.exe解壓
在命令行模式下,输入vm_web.exe /x
Step 2:
修改baseline.dat文件
找到[gencomp7788]这个节点
修改以下兩行
InstallOnLHS=0
InstallOnWinXP=0
Step 3:
在命令行下,输入setup.exe /web
將下載的vm_web.exe解壓
在命令行模式下,输入vm_web.exe /x
Step 2:
修改baseline.dat文件
找到[gencomp7788]这个节点
修改以下兩行
InstallOnLHS=0
InstallOnWinXP=0
Step 3:
在命令行下,输入setup.exe /web
訂閱:
文章 (Atom)