chiark / gitweb /
Add more documentation, fix commandline slicing.
[cura.git] / Cura / util / meshLoaders / stl.py
index 029a0b860603bfe54397cddea9718ff1e23a5b2b..dc7c56ed1bf354e012253e904e1202f62a4974dd 100644 (file)
@@ -1,3 +1,15 @@
+"""
+STL file mesh loader.
+STL is the most common file format used for 3D printing right now.
+STLs come in 2 flavors.
+       Binary, which is easy and quick to read.
+       Ascii, which is harder to read, as can come with windows, mac and unix style newlines.
+       The ascii reader has been designed so it has great compatibility with all kinds of formats or slightly broken exports from tools.
+
+This module also contains a function to save objects as an STL file.
+
+http://en.wikipedia.org/wiki/STL_(file_format)
+"""
 __copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 
 import sys