print3d
, will prepare your arrays for 3D-printing. It will cause your printer to lay down plastic at the corresponding (x,y)
millimeter positions on your print-platform as read from your x
and y
arrays. (Think of your print-platform as a piece of graph paper. Your x
and y
arrays are the points you'd normally plot with a pencil on the graph paper.)
print3d
, that will create a print-ready STL file, based on the numbers in your arrays:
id
will contain an identifier that allows you to retrieve you 3d-printable STL file from this link:http://www.codebymath.com/welcome/index.php/getstl/--INSERT-YOUR-RETURNED-ID-HERE--
x = {-10,-9,-8,-7,-6,-5,-4,-3,-2,-1,0,1,2,3,4,5,6,7,8,9,10}
y = {10,8.1,6.4,4.9,3.6,2.5,1.6,0.9,0.4,0.1,0,0.1,0.4,0.9,1.6,2.5,3.6,4.9,6.4,8.1,10}
id = print3d(x,y,1.0)
print(id)
See some of the examples for filling the x
and y
arrays using a for-loop.
Printing the value in id
, as returned by print3d
, will show you the identifer you'll need to retrieve your print-ready file, using this link:
http://www.codebymath.com/welcome/index.php/getstl/--PUT-ID-HERE--
Note that your STL file will be deleted from our server in approximately 60 minutes.