コード例 #1
0
ファイル: Form1.cs プロジェクト: JaredHam777/3dpixels
 public static _Point Project(_Point a, _Point b)
 {
     return(VectMath.Scale(b, (VectMath.Dot(a, b) / (VectMath.SqrMagnitude(b)))));
 }