
#################
generateArcPoints
#################

.. js:function:: wv.generateArcPoints

   .. rst-class:: sig-pretty-signature
   
      | generateArcPoints(**axis**\ : :js:class:`Point3 <wv.Point3>`\ , **angle**\ : *number*\ , **center**\ : :js:class:`Point3 <wv.Point3>`\ , **startOffset**\ : :js:class:`Point3 <wv.Point3>`\ , **segmentCount**\ : *number*\ ): :js:class:`Point3 <wv.Point3>`\ []
   
   Returns an array of evenly-distributed points that lie on an arc.
   
   **Parameters**
   
   
      **axis**\ : :js:class:`Point3 <wv.Point3>`
   
   
         The normal of the plane containing the arc (in other words, the axis of rotation).
   
   
      **angle**\ : *number*
   
   
         The angle swept by the arc (may be negative).
   
   
      **center**\ : :js:class:`Point3 <wv.Point3>`
   
   
         The center point of the arc.
   
   
      **startOffset**\ : :js:class:`Point3 <wv.Point3>`
   
   
         The starting point of the arc, expressed as an offset relative to the center.
   
   
      **segmentCount**\ : *number*
   
   
         The number of line segments to be generated.
   
   
   
   **Returns**\ : :js:class:`Point3 <wv.Point3>`\ []
   
   
      An array containing ``segmentCount + 1`` points.
   
   




