
######################
intersectionPlaneLine2
######################

.. js:function:: intersectionPlaneLine2

   .. rst-class:: sig-pretty-signature
   
      | intersectionPlaneLine2(**lineBegin**\ : :js:class:`~Point3`\ , **lineEnd**\ : :js:class:`~Point3`\ , **plane**\ : :js:class:`~Plane`\ , **out_intersectionPoint**\ : :js:class:`~Point3`\ ): *boolean*
   
   Computes the intersection of a line segment and a plane.
   
   **Parameters**
   
      **lineBegin**\ : :js:class:`~Point3`
   
         The start point of the line segment to intersect.
   
   
      **lineEnd**\ : :js:class:`~Point3`
   
         The end point of the line segment to intersect.
   
   
      **plane**\ : :js:class:`~Plane`
   
         The plane to intersect.
   
   
      **out_intersectionPoint**\ : :js:class:`~Point3`
   
         The out parameter for the point of intersection if one exists.
   
   
   
   **Returns**\ : *boolean*
   
      True if the line segment and plane intersect. False otherwise.
   
   




