コード例 #1
0
ファイル: Plane.cs プロジェクト: JoepBC/scientrace
 public bool isParallelTo(Plane anotherPlane)
 {
     Scientrace.UnitVector n1, n2;
     n1 = this.getNorm();
     n2 = anotherPlane.getNorm();
     return (n1.crossProduct(n2).length != 0);
 }