Skip to content

Commit

Permalink
BufferGeometryUtils: Move to utils/ folder.
Browse files Browse the repository at this point in the history
  • Loading branch information
Don McCurdy committed Aug 14, 2018
1 parent 7e75294 commit 1f5ce17
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<base href="../" />
<base href="../../" />
<script src="list.js"></script>
<script src="page.js"></script>
<link type="text/css" rel="stylesheet" href="page.css" />
Expand Down Expand Up @@ -46,6 +46,6 @@ <h3>[method:BufferAttribute mergeBufferAttributes]( [param:Array attributes] )</

<h2>Source</h2>

[link:https://github.com/mrdoob/three.js/blob/master/examples/js/BufferGeometryUtils.js examples/js/BufferGeometryUtils.js]
[link:https://github.com/mrdoob/three.js/blob/master/examples/js/utils/BufferGeometryUtils.js examples/js/utils/BufferGeometryUtils.js]
</body>
</html>
2 changes: 1 addition & 1 deletion docs/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ var list = {
},

"Utils": {
"BufferGeometryUtils": "examples/BufferGeometryUtils",
"BufferGeometryUtils": "examples/utils/BufferGeometryUtils",
"SceneUtils": "examples/utils/SceneUtils"
}

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion examples/webgl_geometry_minecraft.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

<script src="js/controls/FirstPersonControls.js"></script>

<script src="js/BufferGeometryUtils.js"></script>
<script src="js/utils/BufferGeometryUtils.js"></script>
<script src="js/ImprovedNoise.js"></script>
<script src="js/Detector.js"></script>
<script src="js/libs/stats.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion examples/webgl_interactive_cubes_gpu.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<script src="../build/three.js"></script>

<script src="js/controls/TrackballControls.js"></script>
<script src="js/BufferGeometryUtils.js"></script>
<script src="js/utils/BufferGeometryUtils.js"></script>
<script src="js/libs/stats.min.js"></script>

<script>
Expand Down
2 changes: 1 addition & 1 deletion examples/webgl_postprocessing_crossfade.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<script src="js/crossfade/scenes.js"></script>
<script src="js/crossfade/gui.js"></script>
<script src="js/crossfade/transition.js"></script>
<script src="js/BufferGeometryUtils.js"></script>
<script src="js/utils/BufferGeometryUtils.js"></script>

<script>

Expand Down
2 changes: 1 addition & 1 deletion examples/webgl_terrain_dynamic.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

<script src="js/controls/OrbitControls.js"></script>

<script src="js/BufferGeometryUtils.js"></script>
<script src="js/utils/BufferGeometryUtils.js"></script>

<script src="js/shaders/NormalMapShader.js"></script>
<script src="js/ShaderTerrain.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion test/three.example.unit.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import './unit/qunit-utils.js';

import './unit/example/BufferGeometryUtils.tests';
import './unit/example/utils/BufferGeometryUtils.tests';
import './unit/example/exporters/GLTFExporter.tests';
import './unit/example/loaders/GLTFLoader.tests';
import './unit/example/objects/Lensflare.tests';
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/
/* global QUnit */

import * as BufferGeometryUtils from '../../../examples/js/BufferGeometryUtils';
import * as BufferGeometryUtils from '../../../examples/js/utils/BufferGeometryUtils';

export default QUnit.module( 'BufferGeometryUtils', () => {

Expand Down

0 comments on commit 1f5ce17

Please sign in to comment.