we
    Preparing search index...

    Interface I_AtomSphereAbsorption

    Absorption(O3) 参数 1、散射:无 2、消光: A、[0.000650, 0.001881, 0.000085] ,https://github.com/JolifantoBambla/webgpu-sky-atmosphere B、 σ_aO,R =4.2×10−6 , σ_aO,G =1.8×10 −6 , σ_aO,B =9.6×10 −6 σ_eO​ (h)=max(σ_aO,R​ ,σ_aO,G​ ,σ_aO,B​ )⋅k O​ (h)(单通道消光近似) 3、高度:臭氧最大浓度高度30km 4、吸收 A、vec3f(2.04e-5, 4.97e-5, 1.95e-6) //臭氧吸收系数:绿吸收最强,https://www.shadertoy.com/view/wlBXWK

    4e3 /*臭氧浓度上下衰减速度

    interface I_AtomSphereAbsorption {
        absorption: weVec3;
        absorptionFalloff: 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。

    absorptionFalloff: number

    臭氧浓度上下衰减速度

    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

    在最后执行调用