清理代码格式
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user