You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /**
  2. * @Author: Caven
  3. * @Date: 2020-02-24 13:28:37
  4. */
  5. // material
  6. export * from './type/thirdpart'
  7. export * from './type/circle'
  8. export * from './type/cylinder'
  9. export * from './type/ellipsoid'
  10. export * from './type/polyline'
  11. export * from './type/radar'
  12. export * from './type/wall'
  13. /**
  14. * circle material property
  15. */
  16. export { default as CircleBlurMaterialProperty } from './property/circle/CircleBlurMaterialProperty'
  17. export { default as CircleDiffuseMaterialProperty } from './property/circle/CircleDiffuseMaterialProperty'
  18. export { default as CircleFadeMaterialProperty } from './property/circle/CircleFadeMaterialProperty'
  19. export { default as CirclePulseMaterialProperty } from './property/circle/CirclePulseMaterialProperty'
  20. export { default as CircleScanMaterialProperty } from './property/circle/CircleScanMaterialProperty'
  21. export { default as CircleSpiralMaterialProperty } from './property/circle/CircleSpiralMaterialProperty'
  22. export { default as CircleVaryMaterialProperty } from './property/circle/CircleVaryMaterialProperty'
  23. export { default as CircleWaveMaterialProperty } from './property/circle/CircleWaveMaterialProperty'
  24. /**
  25. * ellipsoid material property
  26. */
  27. export { default as EllipsoidElectricMaterialProperty } from './property/ellipsoid/EllipsoidElectricMaterialProperty'
  28. export { default as EllipsoidTrailMaterialProperty } from './property/ellipsoid/EllipsoidTrailMaterialProperty'
  29. /**
  30. * polyline material property
  31. */
  32. export { default as PolylineFlickerMaterialProperty } from './property/polyline/PolylineFlickerMaterialProperty'
  33. export { default as PolylineFlowMaterialProperty } from './property/polyline/PolylineFlowMaterialProperty'
  34. export { default as PolylineImageTrailMaterialProperty } from './property/polyline/PolylineImageTrailMaterialProperty'
  35. export { default as PolylineLightingMaterialProperty } from './property/polyline/PolylineLightingMaterialProperty'
  36. export { default as PolylineLightingTrailMaterialProperty } from './property/polyline/PolylineLightingTrailMaterialProperty'
  37. export { default as PolylineTrailMaterialProperty } from './property/polyline/PolylineTrailMaterialProperty'
  38. /**
  39. * radar material property
  40. */
  41. export { default as RadarLineMaterialProperty } from './property/radar/RadarLineMaterialProperty'
  42. export { default as RadarSweepMaterialProperty } from './property/radar/RadarSweepMaterialProperty'
  43. export { default as RadarWaveMaterialProperty } from './property/radar/RadarWaveMaterialProperty'
  44. /**
  45. * wall material property
  46. */
  47. export { default as WallImageTrailMaterialProperty } from './property/wall/WallImageTrailMaterialProperty'
  48. export { default as WallLineTrailMaterialProperty } from './property/wall/WallLineTrailMaterialProperty'
  49. export { default as WallTrailMaterialProperty } from './property/wall/WallTrailMaterialProperty'
  50. /**
  51. * water material property
  52. */
  53. export { default as WaterMaterialProperty } from './property/water/WaterMaterialProperty'