Function Grapher

Function Grapher

thingiverse

When remixing the OpenSCAD Graph Generator ||, I recalled one thing that still needed to be tested. That is, using the built-in polyhedron module to create a function graph. This demonstrates the function_grapher module in my library, which is easy to use. For example: include <OpenSCADGraphGenerator.scad>; include <Bolt.scad>; include <FunctionGrapher.scad>; 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 visit dotSCAD. How I Designed This If you're interested in how to design a function_grapher module, take a look at "Function grapher".

Download Model from thingiverse

With this file you will be able to print Function Grapher with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on Function Grapher.