
####################
isPointOnLineSegment
####################

.. js:function:: wv.isPointOnLineSegment

   .. rst-class:: sig-pretty-signature
   
      | isPointOnLineSegment(**p0**\ : :js:class:`Point3 <wv.Point3>`\ , **p1**\ : :js:class:`Point3 <wv.Point3>`\ , **point**\ : :js:class:`Point3 <wv.Point3>`\ , **epsilon**\ : *number*\ ): *boolean*
   
   Determine if the point is both on the line formed by p0-p1, and within the p0-p1 line-segment endpoints
   
   **Parameters**
   
   
      **p0**\ : :js:class:`Point3 <wv.Point3>`
   
   
         First point of the line segment
   
   
      **p1**\ : :js:class:`Point3 <wv.Point3>`
   
   
         Second point of the line segment
   
   
      **point**\ : :js:class:`Point3 <wv.Point3>`
   
   
         Point that possibly lies on the line segment.
   
   
      **epsilon**\ : *number*
   
   
         Epsilon value used with point-on-line distance calculation.
   
   
   
   **Returns**\ : *boolean*
   




