コード例 #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)));
 }