doxygen: add newline after \file

While \file doesn't need an argument, it can't have another doxy
command after it.
This commit is contained in:
2019-02-18 08:08:12 +11:00
parent 3316853323
commit de13d0a80c
2994 changed files with 6288 additions and 3339 deletions

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pymathutils
/** \file
* \ingroup pymathutils
*/
#include <Python.h>

View File

@@ -17,7 +17,8 @@
#ifndef __MATHUTILS_H__
#define __MATHUTILS_H__
/** \file \ingroup pymathutils
/** \file
* \ingroup pymathutils
*/
/* Can cast different mathutils types to this, use for generic funcs */

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pymathutils
/** \file
* \ingroup pymathutils
*/

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pymathutils
/** \file
* \ingroup pymathutils
*/

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pymathutils
/** \file
* \ingroup pymathutils
*/

View File

@@ -17,7 +17,8 @@
#ifndef __MATHUTILS_EULER_H__
#define __MATHUTILS_EULER_H__
/** \file \ingroup pymathutils
/** \file
* \ingroup pymathutils
*/
extern PyTypeObject euler_Type;

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pymathutils
/** \file
* \ingroup pymathutils
*/

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pymathutils
/** \file
* \ingroup pymathutils
*/

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pymathutils
/** \file
* \ingroup pymathutils
*/

View File

@@ -17,7 +17,8 @@
#ifndef __MATHUTILS_QUATERNION_H__
#define __MATHUTILS_QUATERNION_H__
/** \file \ingroup pymathutils
/** \file
* \ingroup pymathutils
*/
extern PyTypeObject quaternion_Type;

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pymathutils
/** \file
* \ingroup pymathutils
*/

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pymathutils
/** \file
* \ingroup pymathutils
*/

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup mathutils
/** \file
* \ingroup mathutils
*
* This file defines the 'mathutils.bvhtree' module, a general purpose module to access
* blenders bvhtree for mesh surface nearest-element search and ray casting.

View File

@@ -15,7 +15,8 @@
*/
/** \file \ingroup mathutils
/** \file
* \ingroup mathutils
*/
#ifndef __MATHUTILS_BVHTREE_H__

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pymathutils
/** \file
* \ingroup pymathutils
*/

View File

@@ -17,7 +17,8 @@
#ifndef __MATHUTILS_GEOMETRY_H__
#define __MATHUTILS_GEOMETRY_H__
/** \file \ingroup pymathutils
/** \file
* \ingroup pymathutils
*/
PyMODINIT_FUNC PyInit_mathutils_geometry(void);

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup pymathutils
/** \file
* \ingroup pymathutils
*/

View File

@@ -17,7 +17,8 @@
#ifndef __MATHUTILS_INTERPOLATE_H__
#define __MATHUTILS_INTERPOLATE_H__
/** \file \ingroup pymathutils
/** \file
* \ingroup pymathutils
*/
PyMODINIT_FUNC PyInit_mathutils_interpolate(void);

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup mathutils
/** \file
* \ingroup mathutils
*
* This file defines the 'mathutils.kdtree' module, a general purpose module to access
* blenders kdtree for 3d spatial lookups.

View File

@@ -15,7 +15,8 @@
*/
/** \file \ingroup mathutils
/** \file
* \ingroup mathutils
*/
#ifndef __MATHUTILS_KDTREE_H__

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup mathutils
/** \file
* \ingroup mathutils
*
* This file defines the 'noise' module, a general purpose module to access
* blenders noise functions.

View File

@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/** \file \ingroup mathutils
/** \file
* \ingroup mathutils
*/
#ifndef __MATHUTILS_NOISE_H__