예제 #1
0
파일: Plane.cs 프로젝트: veggielane/OpenCAD
 public Plane(Vect3 normal, Vect3 point)
 {
     Normal = normal;
     Distance = -normal.DotProduct(point);
 }
예제 #2
0
 public Plane(Vect3 normal, Vect3 point)
 {
     Normal   = normal;
     Distance = -normal.DotProduct(point);
 }