Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWillian Padovani Germano <wpgermano@gmail.com>2003-11-23 20:46:06 +0300
committerWillian Padovani Germano <wpgermano@gmail.com>2003-11-23 20:46:06 +0300
commit5e7f9dfa084d978bbcb96dad7ac2bae80789714e (patch)
tree65767c41ef26feb0a7724ad3b4f05daaa69e253e /source/blender/python/api2_2x/MTex.h
parent511b098c81913a8ce437ebed6c7f211dd9563f1b (diff)
BPython:
-- New module: Blender.Texture, by new developer Alex Mole. Most of it is done: guess only Ipo, envmap, colorband and plugin were not implemented yet.
Diffstat (limited to 'source/blender/python/api2_2x/MTex.h')
-rw-r--r--source/blender/python/api2_2x/MTex.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/MTex.h b/source/blender/python/api2_2x/MTex.h
new file mode 100644
index 00000000000..0363f16c4da
--- /dev/null
+++ b/source/blender/python/api2_2x/MTex.h
@@ -0,0 +1,65 @@
+/*
+ *
+ * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version. The Blender
+ * Foundation also sells licenses for use in proprietary software under
+ * the Blender License. See http://www.blender.org/BL/ for information
+ * about this.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
+ * All rights reserved.
+ *
+ * This is a new part of Blender.
+ *
+ * Contributor(s): Alex Mole
+ *
+ * ***** END GPL/BL DUAL LICENSE BLOCK *****
+*/
+
+#ifndef EXPP_MTEX_H
+#define EXPP_MTEX_H
+
+#include <Python.h>
+
+#include <DNA_texture_types.h>
+
+
+/*****************************************************************************/
+/* Python BPy_MTex structure definition */
+/*****************************************************************************/
+
+typedef struct {
+ PyObject_HEAD
+ MTex *mtex;
+} BPy_MTex;
+
+extern PyTypeObject MTex_Type;
+
+#define BPy_MTex_Check(v) ((v)->ob_type == &MTex_Type)
+
+
+/*****************************************************************************/
+/* Module Blender.Texture.MTex - public functions */
+/*****************************************************************************/
+
+PyObject *MTex_Init (void);
+PyObject* MTex_CreatePyObject (struct MTex *obj);
+int MTex_CheckPyObject (PyObject *py_obj);
+MTex* MTex_FromPyObject (PyObject *py_obj);
+
+
+#endif /* EXPP_MTEX_H */
+