コード例 #1
0
 //Positive if point is on front side of plane
 public static float signedDistance(Plane plane, float3 point)
 {
     return(math.dot(plane, point.xyz1()));
 }