Interface IsosurfaceOptions

等高面配置

IsosurfaceOptions

interface IsosurfaceOptions {
    breakCount: number;
    colors: Color[];
    interval: number;
    width: number;
}

Properties

breakCount: number

等高面断点个数

IsosurfaceOptions

colors: Color[]

颜色表,数量要和breakCount一致

IsosurfaceOptions

interval: number

等高面高度间隔

IsosurfaceOptions

width: number

贴图宽度,单位像素

IsosurfaceOptions