Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Functions

  • Returns the perpendicular distance from the plane to the given point.

    Parameters

    • plane: Plane

      The plane.

    • point: Vector3

      The point to calculate distance from plane.

    Returns number

    A distance.

  • Returns the point where the line intersects with this plane. If the line does not intersect, then undefined is returned. If the line is on the plane, then the starting point of the line is returned.

    Parameters

    • plane: Plane

      The plane to intersect.

    • line: Line3

      The line to intersect.

    Returns Vector3 | undefined

    An intersecting point on the plane and line.