清理代码格式

This commit is contained in:
ChenX
2018-05-30 18:32:42 +08:00
parent e3c565a83d
commit 2a17e619a2
6 changed files with 20 additions and 15 deletions

View File

@@ -1,14 +1,14 @@
import { Matrix2 } from './Matrix2';
import * as THREE from 'three';
import { Geometry, Vector2 } from 'three';
export function RotateUVs(geo: THREE.Geometry)
export function RotateUVs(geo: Geometry)
{
let roMat = new Matrix2();
roMat.set(0, -1,
1, 0);
let addV = new THREE.Vector2(1, 0);
let addV = new Vector2(1, 0);
for (let uvs of geo.faceVertexUvs)
{