예제 #1
0
파일: UV.cs 프로젝트: ClintKilmer/CKGL.VK
 public static UV Eerp(UV a, UV b, float t)
 {
     return(new UV(a.U.Eerp(b.U, t), a.V.Eerp(b.V, t)));
 }
예제 #2
0
파일: UV.cs 프로젝트: ClintKilmer/CKGL.VK
 public UV Eerp(UV b, float t)
 {
     return(new UV(U.Eerp(b.U, t), V.Eerp(b.V, t)));
 }