# sphere_spiral_extrude Extrudes a 2D shape along the path of a sphere spiral. When using this module, you should use points to represent the 2D shape. If your 2D shape is not solid, indexes of triangles are required. See [sweep](https://openhome.cc/eGossip/OpenSCAD/lib3x-sweep.html) for details. ## Parameters - `shape_pts` : A list of points represent a shape. See the example below. - `radius` , `za_step`, `z_circles`, `begin_angle`, `end_angle`, `vt_dir`, `rt_dir` : See [sphere_spiral](https://openhome.cc/eGossip/OpenSCAD/lib3x-sphere_spiral.html) for details. - `twist` : The number of degrees of through which the shape is extruded. - `scale` : Scales the 2D shape by this value over the length of the extrusion. Scale can be a scalar or a vector. - `triangles` : `"SOLID"` (default), `"HOLLOW"` or user-defined indexes. See [sweep](https://openhome.cc/eGossip/OpenSCAD/lib3x-sweep.html) for details. ## Examples use use points_triangles = shape_pentagram(2); sphere_spiral_extrude( shape_pts = points_triangles, radius = 40, za_step = 2, z_circles = 20, begin_angle = 90, end_angle = 450, vt_dir = "SPI_UP", scale = 5 ); ![sphere_spiral_extrude](images/lib3x-sphere_spiral_extrude-1.JPG)