UNPKG

bcgis-type

Version:

The SDK is based on Cesium for secondary development of 2, 3D all-in-one WebGis application framework, the framework optimizes the use of Cesium and add some additional features, designed for developers to quickly build WebGis applications.

50 lines (49 loc) 1.02 kB
import MaterialProperty from "../../MaterialProperty"; /** * 模糊圆材质 * @noInheritDoc * @example * ```ts * let material = new BC.CircleBlurMaterialProperty({ * color: BC.Color.WHITE, * }) * ``` */ declare class CircleBlurMaterialProperty extends MaterialProperty { /** * 颜色 */ color: Cesium.Color; /** * 速度 */ speed: number; /** * @param options 属性 */ constructor(options?: { /** * 颜色 * @defaultValue BC.Color.fromBytes(0, 255, 255, 255) */ color: Cesium.Color; /** * 速度 * @defaultValue 1 */ speed: number; }); /** * @internal */ getType(time: Cesium.JulianDate): string; /** * @internal */ getValue(time: Cesium.JulianDate, result: any): any; /** * @internal */ equals(other: any): any; } export default CircleBlurMaterialProperty;