@xeokit/xeokit-sdk 2.4.0-alpha-72 → 2.4.0-alpha-73
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.
package/dist/xeokit-sdk.cjs.js
CHANGED
|
@@ -99476,9 +99476,9 @@ class Viewer {
|
|
|
99476
99476
|
* @param {Boolean} [cfg.alphaDepthMask=true] Whether writing into the depth buffer is enabled or disabled when rendering transparent objects.
|
|
99477
99477
|
* @param {Boolean} [cfg.entityOffsetsEnabled=false] Whether to enable {@link Entity#offset}. For best performance, only set this ````true```` when you need to use {@link Entity#offset}.
|
|
99478
99478
|
* @param {Boolean} [cfg.pickSurfacePrecisionEnabled=false] Whether to enable full-precision accuracy when surface picking with {@link Scene#pick}. Note that when ````true````, this configuration will increase the amount of browser memory used by the Viewer. The ````pickSurfacePrecision```` option for ````Scene#pick```` only works if this is set ````true````.
|
|
99479
|
-
* @param {Boolean} [cfg.logarithmicDepthBufferEnabled=
|
|
99479
|
+
* @param {Boolean} [cfg.logarithmicDepthBufferEnabled=true] Whether to enable logarithmic depth buffer. When this is true,
|
|
99480
99480
|
* you can set huge values for {@link Perspective#far} and {@link Ortho#far}, to push the far clipping plane back so
|
|
99481
|
-
* that it does not clip huge models.
|
|
99481
|
+
* that it does not clip huge models. Enabling this also allows snap-picking to work more accurately when the model is far from the viewpoint.
|
|
99482
99482
|
* @param {Boolean} [cfg.colorTextureEnabled=true] Whether to enable base color texture rendering.
|
|
99483
99483
|
* @param {Boolean} [cfg.pbrEnabled=false] Whether to enable physically-based rendering.
|
|
99484
99484
|
* @param {LocaleService} [cfg.localeService=null] Optional locale-based translation service.
|
|
@@ -99540,7 +99540,7 @@ class Viewer {
|
|
|
99540
99540
|
alphaDepthMask: (cfg.alphaDepthMask !== false),
|
|
99541
99541
|
entityOffsetsEnabled: (!!cfg.entityOffsetsEnabled),
|
|
99542
99542
|
pickSurfacePrecisionEnabled: (!!cfg.pickSurfacePrecisionEnabled),
|
|
99543
|
-
logarithmicDepthBufferEnabled: (
|
|
99543
|
+
logarithmicDepthBufferEnabled: (cfg.logarithmicDepthBufferEnabled !== false),
|
|
99544
99544
|
pbrEnabled: (!!cfg.pbrEnabled),
|
|
99545
99545
|
lodEnabled: (!!cfg.lodEnabled),
|
|
99546
99546
|
vfcCulling: (!!cfg.vfcEnabled),
|
package/dist/xeokit-sdk.es.js
CHANGED
|
@@ -99472,9 +99472,9 @@ class Viewer {
|
|
|
99472
99472
|
* @param {Boolean} [cfg.alphaDepthMask=true] Whether writing into the depth buffer is enabled or disabled when rendering transparent objects.
|
|
99473
99473
|
* @param {Boolean} [cfg.entityOffsetsEnabled=false] Whether to enable {@link Entity#offset}. For best performance, only set this ````true```` when you need to use {@link Entity#offset}.
|
|
99474
99474
|
* @param {Boolean} [cfg.pickSurfacePrecisionEnabled=false] Whether to enable full-precision accuracy when surface picking with {@link Scene#pick}. Note that when ````true````, this configuration will increase the amount of browser memory used by the Viewer. The ````pickSurfacePrecision```` option for ````Scene#pick```` only works if this is set ````true````.
|
|
99475
|
-
* @param {Boolean} [cfg.logarithmicDepthBufferEnabled=
|
|
99475
|
+
* @param {Boolean} [cfg.logarithmicDepthBufferEnabled=true] Whether to enable logarithmic depth buffer. When this is true,
|
|
99476
99476
|
* you can set huge values for {@link Perspective#far} and {@link Ortho#far}, to push the far clipping plane back so
|
|
99477
|
-
* that it does not clip huge models.
|
|
99477
|
+
* that it does not clip huge models. Enabling this also allows snap-picking to work more accurately when the model is far from the viewpoint.
|
|
99478
99478
|
* @param {Boolean} [cfg.colorTextureEnabled=true] Whether to enable base color texture rendering.
|
|
99479
99479
|
* @param {Boolean} [cfg.pbrEnabled=false] Whether to enable physically-based rendering.
|
|
99480
99480
|
* @param {LocaleService} [cfg.localeService=null] Optional locale-based translation service.
|
|
@@ -99536,7 +99536,7 @@ class Viewer {
|
|
|
99536
99536
|
alphaDepthMask: (cfg.alphaDepthMask !== false),
|
|
99537
99537
|
entityOffsetsEnabled: (!!cfg.entityOffsetsEnabled),
|
|
99538
99538
|
pickSurfacePrecisionEnabled: (!!cfg.pickSurfacePrecisionEnabled),
|
|
99539
|
-
logarithmicDepthBufferEnabled: (
|
|
99539
|
+
logarithmicDepthBufferEnabled: (cfg.logarithmicDepthBufferEnabled !== false),
|
|
99540
99540
|
pbrEnabled: (!!cfg.pbrEnabled),
|
|
99541
99541
|
lodEnabled: (!!cfg.lodEnabled),
|
|
99542
99542
|
vfcCulling: (!!cfg.vfcEnabled),
|
package/dist/xeokit-sdk.es5.js
CHANGED
|
@@ -21733,9 +21733,9 @@ var documentBackgroundColor=ownerDocument.documentElement?parseColor(context,get
|
|
|
21733
21733
|
* @param {Boolean} [cfg.alphaDepthMask=true] Whether writing into the depth buffer is enabled or disabled when rendering transparent objects.
|
|
21734
21734
|
* @param {Boolean} [cfg.entityOffsetsEnabled=false] Whether to enable {@link Entity#offset}. For best performance, only set this ````true```` when you need to use {@link Entity#offset}.
|
|
21735
21735
|
* @param {Boolean} [cfg.pickSurfacePrecisionEnabled=false] Whether to enable full-precision accuracy when surface picking with {@link Scene#pick}. Note that when ````true````, this configuration will increase the amount of browser memory used by the Viewer. The ````pickSurfacePrecision```` option for ````Scene#pick```` only works if this is set ````true````.
|
|
21736
|
-
* @param {Boolean} [cfg.logarithmicDepthBufferEnabled=
|
|
21736
|
+
* @param {Boolean} [cfg.logarithmicDepthBufferEnabled=true] Whether to enable logarithmic depth buffer. When this is true,
|
|
21737
21737
|
* you can set huge values for {@link Perspective#far} and {@link Ortho#far}, to push the far clipping plane back so
|
|
21738
|
-
* that it does not clip huge models.
|
|
21738
|
+
* that it does not clip huge models. Enabling this also allows snap-picking to work more accurately when the model is far from the viewpoint.
|
|
21739
21739
|
* @param {Boolean} [cfg.colorTextureEnabled=true] Whether to enable base color texture rendering.
|
|
21740
21740
|
* @param {Boolean} [cfg.pbrEnabled=false] Whether to enable physically-based rendering.
|
|
21741
21741
|
* @param {LocaleService} [cfg.localeService=null] Optional locale-based translation service.
|
|
@@ -21763,7 +21763,7 @@ var documentBackgroundColor=ownerDocument.documentElement?parseColor(context,get
|
|
|
21763
21763
|
* The Viewer's {@link Scene}.
|
|
21764
21764
|
* @property scene
|
|
21765
21765
|
* @type {Scene}
|
|
21766
|
-
*/this.scene=new Scene(this,{canvasId:cfg.canvasId,canvasElement:cfg.canvasElement,keyboardEventsElement:cfg.keyboardEventsElement,contextAttr:{preserveDrawingBuffer:cfg.preserveDrawingBuffer!==false,premultipliedAlpha:!!cfg.premultipliedAlpha,antialias:cfg.antialias!==false},spinnerElementId:cfg.spinnerElementId,transparent:cfg.transparent!==false,gammaInput:true,gammaOutput:false,backgroundColor:cfg.backgroundColor,backgroundColorFromAmbientLight:cfg.backgroundColorFromAmbientLight,ticksPerRender:1,ticksPerOcclusionTest:20,units:cfg.units,scale:cfg.scale,origin:cfg.origin,saoEnabled:cfg.saoEnabled,alphaDepthMask:cfg.alphaDepthMask!==false,entityOffsetsEnabled:!!cfg.entityOffsetsEnabled,pickSurfacePrecisionEnabled:!!cfg.pickSurfacePrecisionEnabled,logarithmicDepthBufferEnabled
|
|
21766
|
+
*/this.scene=new Scene(this,{canvasId:cfg.canvasId,canvasElement:cfg.canvasElement,keyboardEventsElement:cfg.keyboardEventsElement,contextAttr:{preserveDrawingBuffer:cfg.preserveDrawingBuffer!==false,premultipliedAlpha:!!cfg.premultipliedAlpha,antialias:cfg.antialias!==false},spinnerElementId:cfg.spinnerElementId,transparent:cfg.transparent!==false,gammaInput:true,gammaOutput:false,backgroundColor:cfg.backgroundColor,backgroundColorFromAmbientLight:cfg.backgroundColorFromAmbientLight,ticksPerRender:1,ticksPerOcclusionTest:20,units:cfg.units,scale:cfg.scale,origin:cfg.origin,saoEnabled:cfg.saoEnabled,alphaDepthMask:cfg.alphaDepthMask!==false,entityOffsetsEnabled:!!cfg.entityOffsetsEnabled,pickSurfacePrecisionEnabled:!!cfg.pickSurfacePrecisionEnabled,logarithmicDepthBufferEnabled:cfg.logarithmicDepthBufferEnabled!==false,pbrEnabled:!!cfg.pbrEnabled,lodEnabled:!!cfg.lodEnabled,vfcCulling:!!cfg.vfcEnabled,colorTextureEnabled:cfg.colorTextureEnabled!==false,dtxEnabled:!!cfg.dtxEnabled});/**
|
|
21767
21767
|
* Metadata about the {@link Scene} and the models and objects within it.
|
|
21768
21768
|
* @property metaScene
|
|
21769
21769
|
* @type {MetaScene}
|