From 86cb5f26029b3357727b88fee3fa7dd799a8d6c8 Mon Sep 17 00:00:00 2001 From: Anthony LaTorre Date: Tue, 6 Sep 2011 17:18:14 -0400 Subject: 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. --- stl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stl.py') 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: -- cgit