we
    Preparing search index...

    Interface I_AtomSphereRayLeigh

    Rayleigh 参数。 1、散射 A、vec3f(5.5e-6, 13.0e-6, 22.4e-6),单位是 m^-1,蓝通道系数最大 → 蓝天,绿通道系数最大 → 蓝天,https://www.shadertoy.com/view/wlBXWK B、[0.005802, 0.013558, 0.033100],单位是 km^-1https://github.com/JolifantoBambla/webgpu-sky-atmosphere C、σeR⋅(0.8,1.0,1.5) 瑞利蓝光更强 2、消光 A、 单float:1.18×10−5 3、高度:8e3 瑞利分子8km快速衰减

    interface I_AtomSphereRayLeigh {
        absorption: weVec3;
        densityExpScale: number;
        extinction: number | weVec3;
        height: weVec2;
        name?: string;
        scattering: weVec3;
        update?: (scope: any) => any;
        updateAtEnd?: (scope: any) => any;
    }

    Hierarchy (View Summary)

    Index

    Properties

    absorption: weVec3

    吸光系数,不计算使用:0。

    densityExpScale: number

    大气中 Rayleigh 散射的指数分布尺度,单位为 km^-1

    extinction: number | weVec3

    消光系数,单位为 km^-1。 1、单通道用于模拟单通道介质的消光。积分方案使用该值。 2、三通道用于模拟三通道介质的消光。Hillaire方案使用该值。 3、不计算使用0。

    height: weVec2

    高度 [0]=bottom,默认0 [1]=top

    name?: string
    scattering: weVec3

    散射系。

    update?: (scope: any) => any

    自定义更新functon()

    updateAtEnd?: (scope: any) => any

    在最后执行调用