we
    Preparing search index...

    Interface I_AttomSphereBaseLayerParams

    基础层参数。共性参数 1、单位需要明确, todo:积分方式是m^-1 ,hillaire方案是 km^-1

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

    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

    在最后执行调用