@xeokit/xeokit-sdk 2.6.98 → 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 (77) hide show
  1. package/dist/xeokit-sdk.cjs.js +37947 -52036
  2. package/dist/xeokit-sdk.es.js +37948 -52033
  3. package/dist/xeokit-sdk.es5.js +29439 -28306
  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/GLTFLoaderPlugin/GLTFLoaderPlugin.js +1 -0
  11. package/src/plugins/GLTFLoaderPlugin/GLTFSceneModelLoader.js +1 -0
  12. package/src/plugins/LASLoaderPlugin/LASLoaderPlugin.js +628 -628
  13. package/src/plugins/LASLoaderPlugin/index.js +1 -1
  14. package/src/plugins/NavCubePlugin/NavCubePlugin.js +1 -0
  15. package/src/plugins/XKTLoaderPlugin/parsers/ParserV1.js +5 -5
  16. package/src/plugins/XKTLoaderPlugin/parsers/ParserV10.js +5 -5
  17. package/src/plugins/XKTLoaderPlugin/parsers/ParserV12.js +9 -9
  18. package/src/plugins/XKTLoaderPlugin/parsers/ParserV2.js +5 -5
  19. package/src/plugins/XKTLoaderPlugin/parsers/ParserV3.js +5 -5
  20. package/src/plugins/XKTLoaderPlugin/parsers/ParserV4.js +5 -5
  21. package/src/plugins/XKTLoaderPlugin/parsers/ParserV5.js +5 -5
  22. package/src/plugins/XKTLoaderPlugin/parsers/ParserV6.js +5 -5
  23. package/src/plugins/XKTLoaderPlugin/parsers/ParserV7.js +5 -5
  24. package/src/plugins/XKTLoaderPlugin/parsers/ParserV8.js +5 -5
  25. package/src/plugins/XKTLoaderPlugin/parsers/ParserV9.js +5 -5
  26. package/src/plugins/index.js +2 -3
  27. package/src/viewer/scene/materials/Texture.js +2 -0
  28. package/src/viewer/scene/math/math.js +48 -2
  29. package/src/viewer/scene/webgl/Texture2D.js +7 -0
  30. package/types/plugins/AngleMeasurementsPlugin/AngleMeasurement.d.ts +26 -108
  31. package/types/plugins/CityJSONLoaderPlugin/CityJSONLoaderPlugin.d.ts +3 -14
  32. package/types/plugins/DotBIMLoaderPlugin/DotBIMLoaderPlugin.d.ts +5 -23
  33. package/types/plugins/GLTFLoaderPlugin/GLTFLoaderPlugin.d.ts +7 -25
  34. package/types/plugins/LASLoaderPlugin/LASLoaderPlugin.d.ts +20 -100
  35. package/types/plugins/STLLoaderPlugin/STLLoaderPlugin.d.ts +3 -14
  36. package/types/plugins/WebIFCLoaderPlugin/WebIFCLoaderPlugin.d.ts +18 -83
  37. package/types/plugins/XKTLoaderPlugin/XKTLoaderPlugin.d.ts +21 -106
  38. package/types/viewer/Configs.d.ts +6 -24
  39. package/types/viewer/scene/CameraControl/CameraControl.d.ts +67 -446
  40. package/types/viewer/scene/Component.d.ts +1 -1
  41. package/types/viewer/scene/Entity.d.ts +40 -186
  42. package/types/viewer/scene/camera/Camera.d.ts +50 -170
  43. package/types/viewer/scene/camera/CameraFlightAnimation.d.ts +8 -57
  44. package/types/viewer/scene/camera/CameraPath.d.ts +8 -13
  45. package/types/viewer/scene/camera/CameraPathAnimation.d.ts +4 -22
  46. package/types/viewer/scene/camera/CustomProjection.d.ts +6 -21
  47. package/types/viewer/scene/camera/Frustum.d.ts +18 -90
  48. package/types/viewer/scene/camera/Ortho.d.ts +14 -54
  49. package/types/viewer/scene/camera/Perspective.d.ts +16 -70
  50. package/types/viewer/scene/geometry/ReadableGeometry.d.ts +21 -25
  51. package/types/viewer/scene/geometry/VBOGeometry.d.ts +7 -7
  52. package/types/viewer/scene/lights/AmbientLight.d.ts +4 -26
  53. package/types/viewer/scene/lights/DirLight.d.ts +8 -52
  54. package/types/viewer/scene/lights/PointLight.d.ts +14 -93
  55. package/types/viewer/scene/materials/EdgeMaterial.d.ts +12 -37
  56. package/types/viewer/scene/materials/EmphasisMaterial.d.ts +22 -119
  57. package/types/viewer/scene/materials/Fresnel.d.ts +10 -50
  58. package/types/viewer/scene/materials/LambertMaterial.d.ts +16 -90
  59. package/types/viewer/scene/materials/LinesMaterial.d.ts +7 -25
  60. package/types/viewer/scene/materials/MetallicMaterial.d.ts +40 -127
  61. package/types/viewer/scene/materials/PhongMaterial.d.ts +52 -185
  62. package/types/viewer/scene/materials/PointsMaterial.d.ts +20 -101
  63. package/types/viewer/scene/materials/SpecularMaterial.d.ts +41 -117
  64. package/types/viewer/scene/materials/Texture.d.ts +24 -62
  65. package/types/viewer/scene/models/SceneModel.d.ts +76 -233
  66. package/types/viewer/scene/models/SceneModelEntity.d.ts +50 -211
  67. package/types/viewer/scene/models/SceneModelMesh.d.ts +4 -4
  68. package/types/viewer/scene/models/SceneModelTransform.d.ts +14 -59
  69. package/types/viewer/scene/paths/CubicBezierCurve.d.ts +12 -73
  70. package/types/viewer/scene/paths/Curve.d.ts +6 -19
  71. package/types/viewer/scene/paths/Path.d.ts +10 -57
  72. package/types/viewer/scene/paths/QuadraticBezierCurve.d.ts +10 -57
  73. package/types/viewer/scene/paths/SplineCurve.d.ts +6 -32
  74. package/types/viewer/scene/scene/Scene.d.ts +94 -196
  75. package/types/viewer/scene/sectionPlane/SectionPlane.d.ts +12 -69
  76. package/types/viewer/scene/viewport/Viewport.d.ts +4 -14
  77. 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.