non-gon
    Preparing search index...

    Function IsPlaneBetween

    • Determines whether a plane (represented by its center) lies between two other planes in 3D space.

      It uses vector projection to determine if the middle plane lies along the axis defined by the line segment connecting the first and second plane centers.

      Parameters

      • plane1Center: Vector3

        Center of the first plane.

      • middlePlaneCenter: Vector3

        Center of the plane to check.

      • plane2Center: Vector3

        Center of the second plane.

      Returns boolean

      True if the middle plane is located between plane1 and plane2; otherwise, false.