|
@@ -70,7 +70,7 @@ export class B3DMLoaderBase {
|
|
|
const featureTableStart = 28;
|
|
|
const featureTableBuffer = buffer.slice(
|
|
|
featureTableStart,
|
|
|
- featureTableStart + featureTableBinaryByteLength + featureTableJSONByteLength,
|
|
|
+ featureTableStart + featureTableJSONByteLength + featureTableBinaryByteLength,
|
|
|
);
|
|
|
const featureTable = new FeatureTable(
|
|
|
featureTableBuffer,
|
|
@@ -83,7 +83,7 @@ export class B3DMLoaderBase {
|
|
|
const batchTableStart = featureTableStart + featureTableJSONByteLength + featureTableBinaryByteLength;
|
|
|
const batchTableBuffer = buffer.slice(
|
|
|
batchTableStart,
|
|
|
- batchTableStart + batchTableBinaryByteLength + batchTableJSONByteLength,
|
|
|
+ batchTableStart + batchTableJSONByteLength + batchTableBinaryByteLength,
|
|
|
);
|
|
|
const batchTable = new BatchTable(
|
|
|
batchTableBuffer,
|