Back to class index
| Plane::ClosestPointSyntaxfloat4 Plane::ClosestPoint(const float4 &point) const; [1 line of code]float4 Plane::ClosestPoint(const Ray &ray) const; [18 lines of code] float4 Plane::ClosestPoint(const LineSegment &lineSegment) const; [35 lines of code] Computes the closest point on this plane to the given object. If the other object intersects this plane, this function will return an arbitrary point inside the region of intersection. See AlsoWork in progress:Todo: in float4 Plane::ClosestPoint(const LineSegment &lineSegment) const: Output parametric t along the ray as well. |