raySegment.js 592 B

1234567891011121314151617181920212223242526272829
  1. //This file is automatically rebuilt by the Cesium build process.
  2. export default "/**\n\
  3. * DOC_TBA\n\
  4. *\n\
  5. * @name czm_raySegment\n\
  6. * @glslStruct\n\
  7. */\n\
  8. struct czm_raySegment\n\
  9. {\n\
  10. float start;\n\
  11. float stop;\n\
  12. };\n\
  13. \n\
  14. /**\n\
  15. * DOC_TBA\n\
  16. *\n\
  17. * @name czm_emptyRaySegment\n\
  18. * @glslConstant \n\
  19. */\n\
  20. const czm_raySegment czm_emptyRaySegment = czm_raySegment(-czm_infinity, -czm_infinity);\n\
  21. \n\
  22. /**\n\
  23. * DOC_TBA\n\
  24. *\n\
  25. * @name czm_fullRaySegment\n\
  26. * @glslConstant \n\
  27. */\n\
  28. const czm_raySegment czm_fullRaySegment = czm_raySegment(0.0, czm_infinity);\n\
  29. ";