Skip to content

Commit

Permalink
Merge pull request #20185 from linbingquan/dev-cleanup-src
Browse files Browse the repository at this point in the history
src: use single quotes.
  • Loading branch information
mrdoob committed Aug 25, 2020
2 parents 14f4ae1 + 42fb61c commit e139603
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
22 changes: 11 additions & 11 deletions src/extras/PMREMGenerator.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ import {
RGBM7Encoding,
UnsignedByteType,
sRGBEncoding
} from "../constants.js";

import { BufferAttribute } from "../core/BufferAttribute.js";
import { BufferGeometry } from "../core/BufferGeometry.js";
import { Mesh } from "../objects/Mesh.js";
import { OrthographicCamera } from "../cameras/OrthographicCamera.js";
import { PerspectiveCamera } from "../cameras/PerspectiveCamera.js";
import { RawShaderMaterial } from "../materials/RawShaderMaterial.js";
import { Vector2 } from "../math/Vector2.js";
import { Vector3 } from "../math/Vector3.js";
import { WebGLRenderTarget } from "../renderers/WebGLRenderTarget.js";
} from '../constants.js';

import { BufferAttribute } from '../core/BufferAttribute.js';
import { BufferGeometry } from '../core/BufferGeometry.js';
import { Mesh } from '../objects/Mesh.js';
import { OrthographicCamera } from '../cameras/OrthographicCamera.js';
import { PerspectiveCamera } from '../cameras/PerspectiveCamera.js';
import { RawShaderMaterial } from '../materials/RawShaderMaterial.js';
import { Vector2 } from '../math/Vector2.js';
import { Vector3 } from '../math/Vector3.js';
import { WebGLRenderTarget } from '../renderers/WebGLRenderTarget.js';

const LOD_MIN = 4;
const LOD_MAX = 8;
Expand Down
6 changes: 3 additions & 3 deletions src/renderers/webgl/WebGLAttributes.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { WebGLCapabilities } from "./WebGLCapabilities";
import { BufferAttribute } from "../../core/BufferAttribute";
import { InterleavedBufferAttribute } from "../../core/InterleavedBufferAttribute";
import { WebGLCapabilities } from './WebGLCapabilities';
import { BufferAttribute } from '../../core/BufferAttribute';
import { InterleavedBufferAttribute } from '../../core/InterleavedBufferAttribute';

export class WebGLAttributes {

Expand Down
2 changes: 1 addition & 1 deletion src/renderers/webgl/WebGLMaterials.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { BackSide } from "../../constants.js";
import { BackSide } from '../../constants.js';

function WebGLMaterials( properties ) {

Expand Down
8 changes: 4 additions & 4 deletions src/scenes/Scene.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import { Material } from './../materials/Material';
import { Object3D } from './../core/Object3D';
import { Color } from '../math/Color';
import { Texture } from '../textures/Texture';
import { WebGLRenderer } from "../renderers/WebGLRenderer";
import { Camera } from "../cameras/Camera";
import { WebGLRenderTarget } from "../renderers/WebGLRenderTarget";
import { WebGLCubeRenderTarget } from "../renderers/WebGLCubeRenderTarget";
import { WebGLRenderer } from '../renderers/WebGLRenderer';
import { Camera } from '../cameras/Camera';
import { WebGLRenderTarget } from '../renderers/WebGLRenderTarget';
import { WebGLCubeRenderTarget } from '../renderers/WebGLCubeRenderTarget';

// Scenes /////////////////////////////////////////////////////////////////////

Expand Down

0 comments on commit e139603

Please sign in to comment.