| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /**
- * @Author: Caven
- * @Date: 2020-02-24 13:28:37
- */
-
- // material
-
- export * from './type/thirdpart'
- export * from './type/circle'
- export * from './type/cylinder'
- export * from './type/ellipsoid'
- export * from './type/polyline'
- export * from './type/radar'
- export * from './type/wall'
-
- /**
- * circle material property
- */
-
- export { default as CircleBlurMaterialProperty } from './property/circle/CircleBlurMaterialProperty'
- export { default as CircleDiffuseMaterialProperty } from './property/circle/CircleDiffuseMaterialProperty'
- export { default as CircleFadeMaterialProperty } from './property/circle/CircleFadeMaterialProperty'
- export { default as CirclePulseMaterialProperty } from './property/circle/CirclePulseMaterialProperty'
- export { default as CircleScanMaterialProperty } from './property/circle/CircleScanMaterialProperty'
- export { default as CircleSpiralMaterialProperty } from './property/circle/CircleSpiralMaterialProperty'
- export { default as CircleVaryMaterialProperty } from './property/circle/CircleVaryMaterialProperty'
- export { default as CircleWaveMaterialProperty } from './property/circle/CircleWaveMaterialProperty'
-
- /**
- * ellipsoid material property
- */
- export { default as EllipsoidElectricMaterialProperty } from './property/ellipsoid/EllipsoidElectricMaterialProperty'
- export { default as EllipsoidTrailMaterialProperty } from './property/ellipsoid/EllipsoidTrailMaterialProperty'
-
- /**
- * polyline material property
- */
-
- export { default as PolylineFlickerMaterialProperty } from './property/polyline/PolylineFlickerMaterialProperty'
- export { default as PolylineFlowMaterialProperty } from './property/polyline/PolylineFlowMaterialProperty'
- export { default as PolylineImageTrailMaterialProperty } from './property/polyline/PolylineImageTrailMaterialProperty'
- export { default as PolylineLightingMaterialProperty } from './property/polyline/PolylineLightingMaterialProperty'
- export { default as PolylineLightingTrailMaterialProperty } from './property/polyline/PolylineLightingTrailMaterialProperty'
- export { default as PolylineTrailMaterialProperty } from './property/polyline/PolylineTrailMaterialProperty'
-
- /**
- * radar material property
- */
- export { default as RadarLineMaterialProperty } from './property/radar/RadarLineMaterialProperty'
- export { default as RadarSweepMaterialProperty } from './property/radar/RadarSweepMaterialProperty'
- export { default as RadarWaveMaterialProperty } from './property/radar/RadarWaveMaterialProperty'
-
- /**
- * wall material property
- */
- export { default as WallImageTrailMaterialProperty } from './property/wall/WallImageTrailMaterialProperty'
- export { default as WallLineTrailMaterialProperty } from './property/wall/WallLineTrailMaterialProperty'
- export { default as WallTrailMaterialProperty } from './property/wall/WallTrailMaterialProperty'
-
- /**
- * water material property
- */
- export { default as WaterMaterialProperty } from './property/water/WaterMaterialProperty'
|