@xeokit/xeokit-sdk 2.6.99 → 2.6.100-rc1-no-las

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. package/dist/xeokit-sdk.cjs.js +37944 -52035
  2. package/dist/xeokit-sdk.es.js +37945 -52032
  3. package/dist/xeokit-sdk.es5.js +29439 -28307
  4. package/dist/xeokit-sdk.min.cjs.js +9 -8
  5. package/dist/xeokit-sdk.min.es.js +9 -8
  6. package/dist/xeokit-sdk.min.es5.js +19 -37
  7. package/package.json +13 -6
  8. package/src/plugins/CxConverterIFCLoaderPlugin/CxConverterIFCLoaderPlugin.js +81 -92
  9. package/src/plugins/CxConverterIFCLoaderPlugin/index.js +1 -1
  10. package/src/plugins/LASLoaderPlugin/LASLoaderPlugin.js +628 -628
  11. package/src/plugins/LASLoaderPlugin/index.js +1 -1
  12. package/src/plugins/NavCubePlugin/NavCubePlugin.js +1 -0
  13. package/src/plugins/XKTLoaderPlugin/parsers/ParserV1.js +5 -5
  14. package/src/plugins/XKTLoaderPlugin/parsers/ParserV10.js +5 -5
  15. package/src/plugins/XKTLoaderPlugin/parsers/ParserV12.js +9 -9
  16. package/src/plugins/XKTLoaderPlugin/parsers/ParserV2.js +5 -5
  17. package/src/plugins/XKTLoaderPlugin/parsers/ParserV3.js +5 -5
  18. package/src/plugins/XKTLoaderPlugin/parsers/ParserV4.js +5 -5
  19. package/src/plugins/XKTLoaderPlugin/parsers/ParserV5.js +5 -5
  20. package/src/plugins/XKTLoaderPlugin/parsers/ParserV6.js +5 -5
  21. package/src/plugins/XKTLoaderPlugin/parsers/ParserV7.js +5 -5
  22. package/src/plugins/XKTLoaderPlugin/parsers/ParserV8.js +5 -5
  23. package/src/plugins/XKTLoaderPlugin/parsers/ParserV9.js +5 -5
  24. package/src/plugins/index.js +2 -3
  25. package/src/viewer/scene/materials/Texture.js +2 -0
  26. package/src/viewer/scene/math/math.js +48 -2
  27. package/src/viewer/scene/webgl/Texture2D.js +7 -0
  28. package/types/plugins/AngleMeasurementsPlugin/AngleMeasurement.d.ts +26 -108
  29. package/types/plugins/CityJSONLoaderPlugin/CityJSONLoaderPlugin.d.ts +3 -14
  30. package/types/plugins/DotBIMLoaderPlugin/DotBIMLoaderPlugin.d.ts +5 -23
  31. package/types/plugins/GLTFLoaderPlugin/GLTFLoaderPlugin.d.ts +5 -25
  32. package/types/plugins/LASLoaderPlugin/LASLoaderPlugin.d.ts +20 -100
  33. package/types/plugins/STLLoaderPlugin/STLLoaderPlugin.d.ts +3 -14
  34. package/types/plugins/WebIFCLoaderPlugin/WebIFCLoaderPlugin.d.ts +18 -83
  35. package/types/plugins/XKTLoaderPlugin/XKTLoaderPlugin.d.ts +21 -106
  36. package/types/viewer/Configs.d.ts +6 -24
  37. package/types/viewer/scene/CameraControl/CameraControl.d.ts +67 -446
  38. package/types/viewer/scene/Component.d.ts +1 -1
  39. package/types/viewer/scene/Entity.d.ts +40 -186
  40. package/types/viewer/scene/camera/Camera.d.ts +50 -170
  41. package/types/viewer/scene/camera/CameraFlightAnimation.d.ts +8 -57
  42. package/types/viewer/scene/camera/CameraPath.d.ts +8 -13
  43. package/types/viewer/scene/camera/CameraPathAnimation.d.ts +4 -22
  44. package/types/viewer/scene/camera/CustomProjection.d.ts +6 -21
  45. package/types/viewer/scene/camera/Frustum.d.ts +18 -90
  46. package/types/viewer/scene/camera/Ortho.d.ts +14 -54
  47. package/types/viewer/scene/camera/Perspective.d.ts +16 -70
  48. package/types/viewer/scene/geometry/ReadableGeometry.d.ts +21 -25
  49. package/types/viewer/scene/geometry/VBOGeometry.d.ts +7 -7
  50. package/types/viewer/scene/lights/AmbientLight.d.ts +4 -26
  51. package/types/viewer/scene/lights/DirLight.d.ts +8 -52
  52. package/types/viewer/scene/lights/PointLight.d.ts +14 -93
  53. package/types/viewer/scene/materials/EdgeMaterial.d.ts +12 -37
  54. package/types/viewer/scene/materials/EmphasisMaterial.d.ts +22 -119
  55. package/types/viewer/scene/materials/Fresnel.d.ts +10 -50
  56. package/types/viewer/scene/materials/LambertMaterial.d.ts +16 -90
  57. package/types/viewer/scene/materials/LinesMaterial.d.ts +7 -25
  58. package/types/viewer/scene/materials/MetallicMaterial.d.ts +40 -127
  59. package/types/viewer/scene/materials/PhongMaterial.d.ts +52 -185
  60. package/types/viewer/scene/materials/PointsMaterial.d.ts +20 -101
  61. package/types/viewer/scene/materials/SpecularMaterial.d.ts +41 -117
  62. package/types/viewer/scene/materials/Texture.d.ts +24 -62
  63. package/types/viewer/scene/models/SceneModel.d.ts +76 -233
  64. package/types/viewer/scene/models/SceneModelEntity.d.ts +50 -211
  65. package/types/viewer/scene/models/SceneModelMesh.d.ts +4 -4
  66. package/types/viewer/scene/models/SceneModelTransform.d.ts +14 -59
  67. package/types/viewer/scene/paths/CubicBezierCurve.d.ts +12 -73
  68. package/types/viewer/scene/paths/Curve.d.ts +6 -19
  69. package/types/viewer/scene/paths/Path.d.ts +10 -57
  70. package/types/viewer/scene/paths/QuadraticBezierCurve.d.ts +10 -57
  71. package/types/viewer/scene/paths/SplineCurve.d.ts +6 -32
  72. package/types/viewer/scene/scene/Scene.d.ts +94 -196
  73. package/types/viewer/scene/sectionPlane/SectionPlane.d.ts +12 -69
  74. package/types/viewer/scene/viewport/Viewport.d.ts +4 -14
  75. package/types/viewer/scene/webgl/PickResult.d.ts +13 -28

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.