Remove trailing whitespaces

This commit is contained in:
Aya Morisawa
2016-01-27 20:17:35 +09:00
parent d6c51c607b
commit 48f20e97bf
22 changed files with 209 additions and 210 deletions
+4 -4
View File
@@ -72,7 +72,7 @@ declare module THREE {
*/
export class Projector {
constructor();
// deprecated.
projectVector(vector: Vector3, camera: Camera): Vector3;
@@ -88,10 +88,10 @@ declare module THREE {
* @param sort select whether to sort elements using the Painter's algorithm.
*/
projectScene(scene: Scene, camera: Camera, sortObjects: boolean, sortElements?: boolean): {
objects: Object3D[]; // Mesh, Line or other object
sprites: Object3D[]; // Sprite or Particle
objects: Object3D[]; // Mesh, Line or other object
sprites: Object3D[]; // Sprite or Particle
lights: Light[];
elements: Face3[]; // Line, Particle, Face3 or Face4
};
}
}
}