[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [38438] branches/soc-2011-avocado/blender: Cleanup fixes:

Andrea Weikert elubie at gmx.net
Sat Jul 16 19:03:02 CEST 2011


Revision: 38438
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=38438
Author:   elubie
Date:     2011-07-16 17:03:01 +0000 (Sat, 16 Jul 2011)
Log Message:
-----------
Cleanup fixes: 
* svn-properties: eol-style native + svn-keywords on all new files
* replace spaces with tabs for indention
* added missing GPL headers
* correct tag to $Id$ for correct header
Note to Shuvro: please do these kinds of cleanups in the future on your own.

Modified Paths:
--------------
    branches/soc-2011-avocado/blender/intern/autoseam/AutoseamAdjacency.cpp
    branches/soc-2011-avocado/blender/intern/autoseam/AutoseamAdjacency.h
    branches/soc-2011-avocado/blender/intern/autoseam/AutoseamEigenspace.cpp
    branches/soc-2011-avocado/blender/intern/autoseam/AutoseamEigenspace.h
    branches/soc-2011-avocado/blender/intern/autoseam/AutoseamUtility.cpp
    branches/soc-2011-avocado/blender/intern/autoseam/AutoseamUtility.h
    branches/soc-2011-avocado/blender/intern/autoseam/CMakeLists.txt
    branches/soc-2011-avocado/blender/intern/autoseam/autoseam_C_API.cpp
    branches/soc-2011-avocado/blender/intern/autoseam/autoseam_C_API.h
    branches/soc-2011-avocado/blender/source/blender/editors/mesh/autoseam_tools.c
    branches/soc-2011-avocado/blender/source/blender/editors/mesh/autoseam_tools.h

Property Changed:
----------------
    branches/soc-2011-avocado/blender/intern/autoseam/AutoseamAdjacency.cpp
    branches/soc-2011-avocado/blender/intern/autoseam/AutoseamAdjacency.h
    branches/soc-2011-avocado/blender/intern/autoseam/AutoseamEigenspace.cpp
    branches/soc-2011-avocado/blender/intern/autoseam/AutoseamEigenspace.h
    branches/soc-2011-avocado/blender/intern/autoseam/AutoseamUtility.cpp
    branches/soc-2011-avocado/blender/intern/autoseam/AutoseamUtility.h
    branches/soc-2011-avocado/blender/intern/autoseam/CMakeLists.txt
    branches/soc-2011-avocado/blender/intern/autoseam/autoseam_C_API.cpp
    branches/soc-2011-avocado/blender/intern/autoseam/autoseam_C_API.h
    branches/soc-2011-avocado/blender/source/blender/editors/mesh/autoseam_tools.c
    branches/soc-2011-avocado/blender/source/blender/editors/mesh/autoseam_tools.h

Modified: branches/soc-2011-avocado/blender/intern/autoseam/AutoseamAdjacency.cpp
===================================================================
--- branches/soc-2011-avocado/blender/intern/autoseam/AutoseamAdjacency.cpp	2011-07-16 15:31:40 UTC (rev 38437)
+++ branches/soc-2011-avocado/blender/intern/autoseam/AutoseamAdjacency.cpp	2011-07-16 17:03:01 UTC (rev 38438)
@@ -1,3 +1,31 @@
+/* $Id$ 
+ *
+ * ***** 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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ *
+ * The Original Code is Copyright (C) 2011 by Shuvro Sarker.
+ * All rights reserved.
+ *
+ * The Original Code is: all of this file.
+ *
+ * Contributor(s): Shuvro Sarker
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
+ 
 #include "AutoseamAdjacency.h"
 #include <stdio.h>
 #include <fstream>
@@ -4,7 +32,7 @@
 
 #define THRESHOLD_ZERO 0.0005
 AutoseamAdjacency::AutoseamAdjacency(int dimension)
-{    
+{
 	m_adjacency = MatrixXd::Zero(dimension, dimension);
 	m_index_map_vector.resize(dimension, -1);
 	//threshold_value = min_value;


Property changes on: branches/soc-2011-avocado/blender/intern/autoseam/AutoseamAdjacency.cpp
___________________________________________________________________
Added: svn:keywords
   + Author Date Id Revision
Added: svn:eol-style
   + native

Modified: branches/soc-2011-avocado/blender/intern/autoseam/AutoseamAdjacency.h
===================================================================
--- branches/soc-2011-avocado/blender/intern/autoseam/AutoseamAdjacency.h	2011-07-16 15:31:40 UTC (rev 38437)
+++ branches/soc-2011-avocado/blender/intern/autoseam/AutoseamAdjacency.h	2011-07-16 17:03:01 UTC (rev 38438)
@@ -1,3 +1,31 @@
+/* $Id$ 
+ *
+ * ***** 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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ *
+ * The Original Code is Copyright (C) 2011 by Shuvro Sarker.
+ * All rights reserved.
+ *
+ * The Original Code is: all of this file.
+ *
+ * Contributor(s): Shuvro Sarker
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
+
 #ifndef AUTOSEAM_ADJACENCY_H
 #define AUTOSEAM_ADJACENCY_H
 


Property changes on: branches/soc-2011-avocado/blender/intern/autoseam/AutoseamAdjacency.h
___________________________________________________________________
Added: svn:keywords
   + Author Date Id Revision
Added: svn:eol-style
   + native

Modified: branches/soc-2011-avocado/blender/intern/autoseam/AutoseamEigenspace.cpp
===================================================================
--- branches/soc-2011-avocado/blender/intern/autoseam/AutoseamEigenspace.cpp	2011-07-16 15:31:40 UTC (rev 38437)
+++ branches/soc-2011-avocado/blender/intern/autoseam/AutoseamEigenspace.cpp	2011-07-16 17:03:01 UTC (rev 38438)
@@ -1,3 +1,30 @@
+/* $Id$ 
+ *
+ * ***** 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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ *
+ * The Original Code is Copyright (C) 2011 by Shuvro Sarker.
+ * All rights reserved.
+ *
+ * The Original Code is: all of this file.
+ *
+ * Contributor(s): Shuvro Sarker
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
 #include "AutoseamEigenspace.h"
 #include <fstream>
 


Property changes on: branches/soc-2011-avocado/blender/intern/autoseam/AutoseamEigenspace.cpp
___________________________________________________________________
Added: svn:keywords
   + Author Date Id Revision
Added: svn:eol-style
   + native

Modified: branches/soc-2011-avocado/blender/intern/autoseam/AutoseamEigenspace.h
===================================================================
--- branches/soc-2011-avocado/blender/intern/autoseam/AutoseamEigenspace.h	2011-07-16 15:31:40 UTC (rev 38437)
+++ branches/soc-2011-avocado/blender/intern/autoseam/AutoseamEigenspace.h	2011-07-16 17:03:01 UTC (rev 38438)
@@ -1,3 +1,30 @@
+/* $Id$ 
+ *
+ * ***** 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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ *
+ * The Original Code is Copyright (C) 2011 by Shuvro Sarker.
+ * All rights reserved.
+ *
+ * The Original Code is: all of this file.
+ *
+ * Contributor(s): Shuvro Sarker
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
 #ifndef AUTOSEAM_EIGENSPACE
 #define AUTOSEAM_EIGENSPACE
 


Property changes on: branches/soc-2011-avocado/blender/intern/autoseam/AutoseamEigenspace.h
___________________________________________________________________
Added: svn:keywords
   + Author Date Id Revision
Added: svn:eol-style
   + native

Modified: branches/soc-2011-avocado/blender/intern/autoseam/AutoseamUtility.cpp
===================================================================
--- branches/soc-2011-avocado/blender/intern/autoseam/AutoseamUtility.cpp	2011-07-16 15:31:40 UTC (rev 38437)
+++ branches/soc-2011-avocado/blender/intern/autoseam/AutoseamUtility.cpp	2011-07-16 17:03:01 UTC (rev 38438)
@@ -1,4 +1,4 @@
-/* $Id: 
+/* $Id$
  *
  * ***** BEGIN GPL LICENSE BLOCK *****
  *


Property changes on: branches/soc-2011-avocado/blender/intern/autoseam/AutoseamUtility.cpp
___________________________________________________________________
Added: svn:keywords
   + Author Date Id Revision
Added: svn:eol-style
   + native

Modified: branches/soc-2011-avocado/blender/intern/autoseam/AutoseamUtility.h
===================================================================
--- branches/soc-2011-avocado/blender/intern/autoseam/AutoseamUtility.h	2011-07-16 15:31:40 UTC (rev 38437)
+++ branches/soc-2011-avocado/blender/intern/autoseam/AutoseamUtility.h	2011-07-16 17:03:01 UTC (rev 38438)
@@ -1,4 +1,4 @@
-/* $Id: 
+/* $Id$
  *
  * ***** BEGIN GPL LICENSE BLOCK *****
  *


Property changes on: branches/soc-2011-avocado/blender/intern/autoseam/AutoseamUtility.h
___________________________________________________________________
Added: svn:keywords
   + Author Date Id Revision
Added: svn:eol-style
   + native

Modified: branches/soc-2011-avocado/blender/intern/autoseam/CMakeLists.txt
===================================================================
--- branches/soc-2011-avocado/blender/intern/autoseam/CMakeLists.txt	2011-07-16 15:31:40 UTC (rev 38437)
+++ branches/soc-2011-avocado/blender/intern/autoseam/CMakeLists.txt	2011-07-16 17:03:01 UTC (rev 38438)
@@ -1,4 +1,4 @@
-# $Id: $
+# $Id$
 # ***** BEGIN GPL LICENSE BLOCK *****
 #
 # This program is free software; you can redistribute it and/or


Property changes on: branches/soc-2011-avocado/blender/intern/autoseam/CMakeLists.txt
___________________________________________________________________
Added: svn:keywords
   + Author Date Id Revision
Added: svn:eol-style
   + native

Modified: branches/soc-2011-avocado/blender/intern/autoseam/autoseam_C_API.cpp
===================================================================
--- branches/soc-2011-avocado/blender/intern/autoseam/autoseam_C_API.cpp	2011-07-16 15:31:40 UTC (rev 38437)
+++ branches/soc-2011-avocado/blender/intern/autoseam/autoseam_C_API.cpp	2011-07-16 17:03:01 UTC (rev 38438)
@@ -1,4 +1,4 @@
-/* $Id: 
+/* $Id$ 
  *
  * ***** BEGIN GPL LICENSE BLOCK *****
  *


Property changes on: branches/soc-2011-avocado/blender/intern/autoseam/autoseam_C_API.cpp
___________________________________________________________________
Added: svn:keywords
   + Author Date Id Revision
Added: svn:eol-style
   + native

Modified: branches/soc-2011-avocado/blender/intern/autoseam/autoseam_C_API.h
===================================================================
--- branches/soc-2011-avocado/blender/intern/autoseam/autoseam_C_API.h	2011-07-16 15:31:40 UTC (rev 38437)
+++ branches/soc-2011-avocado/blender/intern/autoseam/autoseam_C_API.h	2011-07-16 17:03:01 UTC (rev 38438)
@@ -1,4 +1,4 @@
-/* $Id: 
+/* $Id$
  *
  * ***** BEGIN GPL LICENSE BLOCK *****
  *


Property changes on: branches/soc-2011-avocado/blender/intern/autoseam/autoseam_C_API.h
___________________________________________________________________
Added: svn:keywords

@@ Diff output truncated at 10240 characters. @@



More information about the Bf-blender-cvs mailing list