spaces -> tabs, (4 spaces == 1 tab, only for white space preceding text)

This commit is contained in:
2010-03-22 09:30:00 +00:00
parent 9b2dd9aac6
commit 1e9bf0cfdb
326 changed files with 3532 additions and 3532 deletions

View File

@@ -295,7 +295,7 @@ static PyObject *M_Geometry_TriangleArea( PyObject * self, PyObject * args )
float v1[3], v2[3], v3[3];
if( !PyArg_ParseTuple
( args, "O!O!O!", &vector_Type, &vec1, &vector_Type, &vec2
( args, "O!O!O!", &vector_Type, &vec1, &vector_Type, &vec2
, &vector_Type, &vec3 ) ) {
PyErr_SetString( PyExc_TypeError, "expected 3 vector types\n");
return NULL;