How do you do polar zonohedra in OpenSCAD?

This page summarizes the projects mentioned and recommended in the original post on /r/openscad

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • dotSCAD

    Reduce the burden of mathematics when playing OpenSCAD

    // based on dotSCAD: https://github.com/JustinSDK/dotSCAD use ; use ; module polar_zonohedra(n){ spiral = [ for(r=[0:n]) let(p = ptf_rotate([10, 0, PI * 10 * r / n], [0, 0, -360 * r / n]) - [10, 0, 0]) [p[0], p[1], p[2] * 1.75] ]; sections = [ for(i=[0:n]) [for(p = spiral) ptf_rotate(p, [0, 0, 360 * i / n])] ]; sweep(sections); } for(n = [4:8]) { translate([50 * (n - 4), 0, 0]) polar_zonohedra(n); }

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts