本文整理汇总了C#中Plane.All方法的典型用法代码示例。如果您正苦于以下问题:C# Plane.All方法的具体用法?C# Plane.All怎么用?C# Plane.All使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Plane
的用法示例。
在下文中一共展示了Plane.All方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestPointPolyhedron
public static bool TestPointPolyhedron(Vector3 p, Plane[] planes)
{
return planes.All(t => (DistPointPlane(p, t) <= 0f));
}
示例2: AddPolygon
public void AddPolygon(Point3D[] points)
{
if (points.Length < 3)
throw new ArgumentException("points.Length < 3");
Point3D innerPoint = new Point3D { X = points.Average(p => p.X), Y = points.Average(p => p.Y), Z = points.Average(p => p.Z) };
Vector3D ortVec = Vector3D.CrossProduct(innerPoint - points[0], points[1] - points[0]);
Plane plane = new Plane(ortVec, points[0]);
Plane[] ortPlanes = new Plane[points.Length];
for (int n = 0; n < points.Length; n++)
{
ortPlanes[n] = new Plane(Vector3D.CrossProduct(points[(n + 1) % points.Length] - points[n], ortVec), points[n]);
ortPlanes[n].Normalize();
}
AddRayTracedObject(points, (int xProj, int yProj, double eyeXPos, out double x, out double z) =>
GetPlaneRayIntersection(xProj, yProj, eyeXPos, plane.A, plane.B, plane.C, plane.D, out x, out z, (x1, y1, z1) => ortPlanes.All(p => p.A * x1 + p.B * y1 + p.C * z1 + p.D > -1e-8)));
}