UNPKG
snow-falls
Version:
latest (1.2.0)
1.2.0
1.0.1
1.0.0
The snow falls and the wind blows
github.com/cct124/snow-falls
cct124/snow-falls
snow-falls
/
lib
/
config
/
index.d.ts
23 lines
(22 loc)
•
411 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import
{
WindField
}
from
"../script/physics/Wind"
;
export
declare
const
PHYSICAL
: {
/** * 重力加速度 */
AG
:
number
;
/** * 空气密度 */
RHO
:
number
;
/** * 雪花的物理常量 */
SONW
: {
/** * 阻力系数 */
CD
:
number
;
RE
:
number
; }; };
export
declare
const
WINDS
:
WindField
[];