[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [38003] branches/soc-2011-avocado/blender/ source/blender/editors/object: Base code for retopo suite, very brief commit with basic gui hook for the basic extend tool

Dan Walters dan683 at gmail.com
Fri Jul 1 09:26:48 CEST 2011


Revision: 38003
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=38003
Author:   dan_w
Date:     2011-07-01 07:26:48 +0000 (Fri, 01 Jul 2011)
Log Message:
-----------
Base code for retopo suite, very brief commit with basic gui hook for the basic extend tool

Modified Paths:
--------------
    branches/soc-2011-avocado/blender/source/blender/editors/object/object_intern.h

Added Paths:
-----------
    branches/soc-2011-avocado/blender/source/blender/editors/object/object_retopo.c

Modified: branches/soc-2011-avocado/blender/source/blender/editors/object/object_intern.h
===================================================================
--- branches/soc-2011-avocado/blender/source/blender/editors/object/object_intern.h	2011-07-01 07:25:31 UTC (rev 38002)
+++ branches/soc-2011-avocado/blender/source/blender/editors/object/object_intern.h	2011-07-01 07:26:48 UTC (rev 38003)
@@ -223,5 +223,8 @@
 /* object_bake.c */
 void OBJECT_OT_bake_image(wmOperatorType *ot);
 
+/* object_retopo.h */
+void OBJECT_OT_retopo_extend(struct wmOperatorType *ot);
+
 #endif /* ED_OBJECT_INTERN_H */
 

Added: branches/soc-2011-avocado/blender/source/blender/editors/object/object_retopo.c
===================================================================
--- branches/soc-2011-avocado/blender/source/blender/editors/object/object_retopo.c	                        (rev 0)
+++ branches/soc-2011-avocado/blender/source/blender/editors/object/object_retopo.c	2011-07-01 07:26:48 UTC (rev 38003)
@@ -0,0 +1,59 @@
+/*
+ * $Id: object_retopo.c 2011-06-26 12:03:00 dan_w $
+ *
+ * ***** BEGIN GPL 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.
+ *
+ * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * The Original Code is Copyright (C) Blender Foundation
+ * All rights reserved.
+ *
+ * The Original Code is: all of this file.
+ *
+ * Contributor(s): none yet.
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
+
+/** \file blender/editors/object/object_retopo.c
+ *  \ingroup edobj
+ */
+
+
+#include <string.h>
+
+#include "BLI_blenlib.h"
+#include "BLI_utildefines.h"
+
+#include "DNA_group_types.h"
+#include "DNA_object_types.h"
+#include "DNA_scene_types.h"
+
+#include "BKE_context.h"
+#include "BKE_depsgraph.h"
+#include "BKE_group.h"
+#include "BKE_main.h"
+#include "BKE_report.h"
+
+#include "ED_screen.h"
+
+#include "WM_api.h"
+#include "WM_types.h"
+
+#include "RNA_access.h"
+#include "RNA_define.h"
+#include "RNA_enum_types.h"
+
+#include "object_intern.h"
\ No newline at end of file




More information about the Bf-blender-cvs mailing list