SmileBASIC コミュニティ返信[4]親投稿DasEtwas MyTheo002016/1/20 16:00You can use the Verlet integration. Make a FOR loop containing: X=X+ ??? Y=Y+ ??? VX=X[I]-OLDX[I]*FRICTION VY=Y[I]-OLDY[I]*FRICTION OLDX[I]=X[I] OLDY[I]=X[I] X=X+VX Y=Y+VY the arrays OLDX and OLDY are needed0そうだね 未プレイ2017/11/04 04:01:47に取得