Sponsored
Sponsored
Function Grapher thingiverse

Function Grapher

thingiverse justinsdk 1764298 Free

When remixing OpenSCAD Graph Generator ||, I remembered one thing I still didn't challenge. That is, using the built-in polyhedron module to create a function graph.
This is a demonstration of the function_grapher module in my library. It's easy to use. For example.
include ;
include ;
include ;

function f(x, y) =
30 * (
cos(sqrt(pow(x, 2) + pow(y, 2))) +
cos(3 * sqrt(pow(x, 2) + pow(y, 2)))
);

thickness = 2;
min_value = -200;
max_value = 200;
resolution = 10;

points = [
for(y = [min_value:resolution:max_value])
[
for(x = [min_value:resolution:max_value])
[x, y, f(x, y)]
]
];

function_grapher(points, thickness);
For more information, please take a look at dotSCAD.
How I Designed This
If you're interested in how to design a function_grapher module, take a look at "Function grapher".



OpenSCAD Documentation
OpenSCAD Documentation - Traditional Chinese
OpenSCAD Documentation - English

View on thingiverse

Direct link to the original creator's page

Platform thingiverse
Creator justinsdk
Price Free
Format STL / 3D Printable
License See original page
Sponsored
Sponsored
How do I download Function Grapher?

Click the "View on thingiverse" button above to visit the original model page on thingiverse. You can download the STL file directly from the creator's page for free.

What 3D printer can I use for this model?

This STL file is compatible with most FDM 3D printers (Creality Ender 3, Prusa MK3S+, Bambu Lab, etc.) and resin printers (Elegoo, Anycubic). Check the original page for recommended print settings and materials.

Is this 3D model free to download?

Yes, this model is available as a free download on thingiverse. Some creators accept tips or donations.

Can I modify this STL file?

Most STL files can be modified using free software like Blender, TinkerCAD, or Meshmixer. Check the license on the original thingiverse page to see if modifications are permitted by the creator.