summaryrefslogtreecommitdiff
path: root/stl.py
diff options
context:
space:
mode:
authorAnthony LaTorre <tlatorre9@gmail.com>2011-09-06 17:18:14 -0400
committerAnthony LaTorre <tlatorre9@gmail.com>2011-09-06 17:18:14 -0400
commit86cb5f26029b3357727b88fee3fa7dd799a8d6c8 (patch)
treefc915556ef813cf4ad59edeb7b59fee0e3244c34 /stl.py
parent3d3140071713e523516793258e3c904ca162d7b7 (diff)
downloadchroma-86cb5f26029b3357727b88fee3fa7dd799a8d6c8.tar.gz
chroma-86cb5f26029b3357727b88fee3fa7dd799a8d6c8.tar.bz2
chroma-86cb5f26029b3357727b88fee3fa7dd799a8d6c8.zip
geometry on the GPU is now a struct created in the GPUGeometry class. coding style for cuda code is now compliant with python PEP 7 -- Style Guide for C Code.
Diffstat (limited to 'stl.py')
-rw-r--r--stl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/stl.py b/stl.py
index 0806c29..abf0cc9 100644
--- a/stl.py
+++ b/stl.py
@@ -5,7 +5,7 @@ from chroma.geometry import Mesh
import bz2
def mesh_from_stl(filename):
- "Return a mesh from an stl file."
+ "Returns a `chroma.geometry.Mesh` from an STL file."
if filename.endswith('.bz2'):
f = bz2.BZ2File(filename)
else: