Skip to content

Commit

Permalink
BatchedMesh: Fixed imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed Nov 17, 2023
1 parent b65ee86 commit 2b3883a
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions src/objects/BatchedMesh.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
import {
BufferAttribute,
BufferGeometry,
DataTexture,
FloatType,
MathUtils,
Matrix4,
Mesh,
RGBAFormat,
Box3,
Sphere,
Frustum,
WebGLCoordinateSystem,
WebGPUCoordinateSystem,
Vector3,
} from 'three';
import { BufferAttribute } from '../core/BufferAttribute.js';
import { BufferGeometry } from '../core/BufferGeometry.js';
import { DataTexture } from '../textures/DataTexture.js';
import { FloatType } from '../constants.js';
import { MathUtils } from '../math/MathUtils.js';
import { Matrix4 } from '../math/Matrix4.js';
import { Mesh } from './Mesh.js';
import { RGBAFormat } from '../constants.js';
import { Box3 } from '../math/Box3.js';
import { Sphere } from '../math/Sphere.js';
import { Frustum } from '../math/Frustum.js';
import { WebGLCoordinateSystem } from '../constants.js';
import { WebGPUCoordinateSystem } from '../constants.js';
import { Vector3 } from '../math/Vector3.js';

function sortOpaque( a, b ) {

Expand Down

0 comments on commit 2b3883a

Please sign in to comment.