You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -243,7 +243,7 @@ See [`solid/examples/path_extrude_example.py`](https://github.com/SolidCode/Soli
243
243
### Basic color library<aid="basic-color-library"></a>
244
244
You can change an object's color by using the OpenSCAD ```color([rgba_array])``` function:
245
245
246
-
transparent_blue = color([0,0,1, 0.5])(cube(10)) # Specify with RGB[A]
246
+
transparent_blue = color([0,0,1, 0.5])(cube(10)) # Specify with RGB[A]
247
247
red_obj = color(Red)(cube(10)) # Or use predefined colors
248
248
249
249
These colors are pre-defined in solid.utils:
@@ -258,8 +258,7 @@ These colors are pre-defined in solid.utils:
258
258
<tr><td>* FiberBoard </td></tr>
259
259
</table>
260
260
261
-
I took this from someone on Thingiverse and I'm ashamed that I can't find the
262
-
original source. I owe someone some attribution.
261
+
They're a conversion of the materials in the [MCAD OpenSCAD library](https://github.com/openscad/MCAD), as seen [here] (https://github.com/openscad/MCAD/blob/master/materials.scad).
263
262
264
263
### Bill Of Materials<aid="bill-of-materials"></a>
265
264
Put ```@bom_part()``` before any method that defines a part, then
0 commit comments