code cleanup: header cleanup
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
/*
|
||||
*
|
||||
/*
|
||||
* ***** BEGIN GPL LICENSE BLOCK *****
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
@@ -26,15 +25,13 @@
|
||||
* ***** END GPL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifndef __MATHUTILS_H__
|
||||
#define __MATHUTILS_H__
|
||||
|
||||
/** \file blender/python/mathutils/mathutils.h
|
||||
* \ingroup pymathutils
|
||||
*/
|
||||
|
||||
//Include this file for access to vector, quat, matrix, euler, etc...
|
||||
|
||||
#ifndef __MATHUTILS_H__
|
||||
#define __MATHUTILS_H__
|
||||
|
||||
/* Can cast different mathutils types to this, use for generic funcs */
|
||||
|
||||
struct DynStr;
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
/*
|
||||
*
|
||||
* ***** BEGIN GPL LICENSE BLOCK *****
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
/*
|
||||
*
|
||||
* ***** BEGIN GPL LICENSE BLOCK *****
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
/*
|
||||
*
|
||||
* ***** BEGIN GPL LICENSE BLOCK *****
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
/*
|
||||
*
|
||||
/*
|
||||
* ***** BEGIN GPL LICENSE BLOCK *****
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
@@ -27,14 +26,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef __MATHUTILS_EULER_H__
|
||||
#define __MATHUTILS_EULER_H__
|
||||
|
||||
/** \file blender/python/mathutils/mathutils_Euler.h
|
||||
* \ingroup pymathutils
|
||||
*/
|
||||
|
||||
|
||||
#ifndef __MATHUTILS_EULER_H__
|
||||
#define __MATHUTILS_EULER_H__
|
||||
|
||||
extern PyTypeObject euler_Type;
|
||||
#define EulerObject_Check(_v) PyObject_TypeCheck((_v), &euler_Type)
|
||||
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
/*
|
||||
*
|
||||
* ***** BEGIN GPL LICENSE BLOCK *****
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
/*
|
||||
*
|
||||
/*
|
||||
* ***** BEGIN GPL LICENSE BLOCK *****
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
@@ -24,17 +23,15 @@
|
||||
* Contributor(s): Joseph Gilbert
|
||||
*
|
||||
* ***** END GPL LICENSE BLOCK *****
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef __MATHUTILS_QUATERNION_H__
|
||||
#define __MATHUTILS_QUATERNION_H__
|
||||
|
||||
/** \file blender/python/mathutils/mathutils_Quaternion.h
|
||||
* \ingroup pymathutils
|
||||
*/
|
||||
|
||||
|
||||
#ifndef __MATHUTILS_QUATERNION_H__
|
||||
#define __MATHUTILS_QUATERNION_H__
|
||||
|
||||
extern PyTypeObject quaternion_Type;
|
||||
#define QuaternionObject_Check(_v) PyObject_TypeCheck((_v), &quaternion_Type)
|
||||
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
/*
|
||||
*
|
||||
* ***** BEGIN GPL LICENSE BLOCK *****
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
/*
|
||||
*
|
||||
* ***** BEGIN GPL LICENSE BLOCK *****
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
/*
|
||||
*
|
||||
/*
|
||||
* ***** BEGIN GPL LICENSE BLOCK *****
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
@@ -26,15 +25,13 @@
|
||||
* ***** END GPL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
#ifndef __MATHUTILS_GEOMETRY_H__
|
||||
#define __MATHUTILS_GEOMETRY_H__
|
||||
|
||||
/** \file blender/python/mathutils/mathutils_geometry.h
|
||||
* \ingroup pymathutils
|
||||
*/
|
||||
|
||||
/*Include this file for access to vector, quat, matrix, euler, etc...*/
|
||||
|
||||
#ifndef __MATHUTILS_GEOMETRY_H__
|
||||
#define __MATHUTILS_GEOMETRY_H__
|
||||
|
||||
#include "mathutils.h"
|
||||
|
||||
PyMODINIT_FUNC PyInit_mathutils_geometry(void);
|
||||
|
||||
Reference in New Issue
Block a user