verlet-point:Verlet 物理系统的点实用程序

时间:2024-08-02 05:10:54
【文件属性】:

文件名称:verlet-point:Verlet 物理系统的点实用程序

文件大小:5KB

文件格式:ZIP

更新时间:2024-08-02 05:10:54

JavaScript

点 这是 2D/3D 中系统的点实用程序。 var Point = require ( 'verlet-point' ) var p = Point ( { position : [ 25 , 25 ] } ) p . addForce ( [ 15 , 15 ] ) 而对于裸对象,它可能看起来像这样: var p = { position : [ 25 , 25 ] , previous : [ 25 , 25 ] , acceleration : [ 0 , 0 ] , mass : 1 //defaults to 1.0 radius : 25 //defaults to 0.0 } //add force by modifying previous position p . previous [ 0 ] -= 1


【文件预览】:
verlet-point-master
----lib()
--------build.js(1KB)
----2d.js(171B)
----test.js(1KB)
----.npmignore(74B)
----3d.js(171B)
----LICENSE.md(1KB)
----README.md(2KB)
----.gitignore(56B)
----package.json(847B)

网友评论