include/raytracermodule.h
branchpyrit
changeset 97 2a853d284a6a
parent 96 9eb71e76c7fd
child 98 64638385798a
--- a/include/raytracermodule.h	Thu May 15 00:07:25 2008 +0200
+++ b/include/raytracermodule.h	Thu May 15 19:15:57 2008 +0200
@@ -166,10 +166,15 @@
 	Material *material;
 } MaterialObject;
 
-/** NormalVertex object */
+/** Vertex object */
 typedef struct {
 	PyObject_HEAD
-	NormalVertex *nvertex;
+	Vertex *vertex;
+} VertexObject;
+
+/** NormalVertex object - inherits Vertex*/
+typedef struct {
+	VertexObject vertex;
 } NormalVertexObject;
 
 /** abstract Shape object */