Cleanup: style, whitespace, doxy filepaths

This commit is contained in:
2016-06-19 06:25:54 +10:00
parent d67c07ea49
commit 2465bd90d5
63 changed files with 201 additions and 202 deletions

View File

@@ -111,7 +111,7 @@ static PyObject *FrsNoise_drand(BPy_FrsNoise * /*self*/, PyObject *args, PyObjec
PyErr_SetString(PyExc_TypeError, "optional argument 1 must be of type int");
return NULL;
}
if (seed){
if (seed) {
RandGen::srand48(seed);
}
return PyFloat_FromDouble(RandGen::drand48());