[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [35143] trunk/blender/intern/boolop/intern : doxygen: intern/boolop tagged

Nathan Letwory nathan at letworyinteractive.com
Fri Feb 25 11:32:34 CET 2011


Revision: 35143
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=35143
Author:   jesterking
Date:     2011-02-25 10:32:33 +0000 (Fri, 25 Feb 2011)
Log Message:
-----------
doxygen: intern/boolop tagged

Modified Paths:
--------------
    trunk/blender/intern/boolop/intern/BOP_BBox.cpp
    trunk/blender/intern/boolop/intern/BOP_BBox.h
    trunk/blender/intern/boolop/intern/BOP_BSPNode.cpp
    trunk/blender/intern/boolop/intern/BOP_BSPNode.h
    trunk/blender/intern/boolop/intern/BOP_BSPTree.cpp
    trunk/blender/intern/boolop/intern/BOP_BSPTree.h
    trunk/blender/intern/boolop/intern/BOP_Chrono.h
    trunk/blender/intern/boolop/intern/BOP_Edge.cpp
    trunk/blender/intern/boolop/intern/BOP_Edge.h
    trunk/blender/intern/boolop/intern/BOP_Face.cpp
    trunk/blender/intern/boolop/intern/BOP_Face.h
    trunk/blender/intern/boolop/intern/BOP_Face2Face.cpp
    trunk/blender/intern/boolop/intern/BOP_Face2Face.h
    trunk/blender/intern/boolop/intern/BOP_Indexs.h
    trunk/blender/intern/boolop/intern/BOP_Interface.cpp
    trunk/blender/intern/boolop/intern/BOP_MathUtils.cpp
    trunk/blender/intern/boolop/intern/BOP_MathUtils.h
    trunk/blender/intern/boolop/intern/BOP_Merge.cpp
    trunk/blender/intern/boolop/intern/BOP_Merge.h
    trunk/blender/intern/boolop/intern/BOP_Merge2.cpp
    trunk/blender/intern/boolop/intern/BOP_Merge2.h
    trunk/blender/intern/boolop/intern/BOP_Mesh.cpp
    trunk/blender/intern/boolop/intern/BOP_Mesh.h
    trunk/blender/intern/boolop/intern/BOP_Misc.h
    trunk/blender/intern/boolop/intern/BOP_Segment.cpp
    trunk/blender/intern/boolop/intern/BOP_Segment.h
    trunk/blender/intern/boolop/intern/BOP_Splitter.cpp
    trunk/blender/intern/boolop/intern/BOP_Splitter.h
    trunk/blender/intern/boolop/intern/BOP_Tag.cpp
    trunk/blender/intern/boolop/intern/BOP_Tag.h
    trunk/blender/intern/boolop/intern/BOP_Triangulator.cpp
    trunk/blender/intern/boolop/intern/BOP_Triangulator.h
    trunk/blender/intern/boolop/intern/BOP_Vertex.cpp
    trunk/blender/intern/boolop/intern/BOP_Vertex.h

Modified: trunk/blender/intern/boolop/intern/BOP_BBox.cpp
===================================================================
--- trunk/blender/intern/boolop/intern/BOP_BBox.cpp	2011-02-25 10:24:29 UTC (rev 35142)
+++ trunk/blender/intern/boolop/intern/BOP_BBox.cpp	2011-02-25 10:32:33 UTC (rev 35143)
@@ -1,4 +1,4 @@
-/**
+/*
  * ***** BEGIN GPL LICENSE BLOCK *****
  *
  * This program is free software; you can redistribute it and/or
@@ -25,6 +25,11 @@
  * ***** END GPL LICENSE BLOCK *****
  */
 
+/** \file boolop/intern/BOP_BBox.cpp
+ *  \ingroup boolopintern
+ */
+
+
 #include "BOP_BBox.h"
 
 #include "MT_Scalar.h"

Modified: trunk/blender/intern/boolop/intern/BOP_BBox.h
===================================================================
--- trunk/blender/intern/boolop/intern/BOP_BBox.h	2011-02-25 10:24:29 UTC (rev 35142)
+++ trunk/blender/intern/boolop/intern/BOP_BBox.h	2011-02-25 10:32:33 UTC (rev 35143)
@@ -1,4 +1,4 @@
-/**
+/*
  * ***** BEGIN GPL LICENSE BLOCK *****
  *
  * This program is free software; you can redistribute it and/or
@@ -25,6 +25,11 @@
  * ***** END GPL LICENSE BLOCK *****
  */
 
+/** \file boolop/intern/BOP_BBox.h
+ *  \ingroup boolopintern
+ */
+
+
 #ifndef BOP_BBOX_H
 #define BOP_BBOX_H
 

Modified: trunk/blender/intern/boolop/intern/BOP_BSPNode.cpp
===================================================================
--- trunk/blender/intern/boolop/intern/BOP_BSPNode.cpp	2011-02-25 10:24:29 UTC (rev 35142)
+++ trunk/blender/intern/boolop/intern/BOP_BSPNode.cpp	2011-02-25 10:32:33 UTC (rev 35143)
@@ -1,4 +1,4 @@
-/**
+/*
  * ***** BEGIN GPL LICENSE BLOCK *****
  *
  * This program is free software; you can redistribute it and/or
@@ -24,6 +24,11 @@
  *
  * ***** END GPL LICENSE BLOCK *****
  */
+
+/** \file boolop/intern/BOP_BSPNode.cpp
+ *  \ingroup boolopintern
+ */
+
  
 #include "BOP_MathUtils.h"
 #include "BOP_BSPNode.h"

Modified: trunk/blender/intern/boolop/intern/BOP_BSPNode.h
===================================================================
--- trunk/blender/intern/boolop/intern/BOP_BSPNode.h	2011-02-25 10:24:29 UTC (rev 35142)
+++ trunk/blender/intern/boolop/intern/BOP_BSPNode.h	2011-02-25 10:32:33 UTC (rev 35143)
@@ -1,4 +1,4 @@
-/**
+/*
  * ***** BEGIN GPL LICENSE BLOCK *****
  *
  * This program is free software; you can redistribute it and/or
@@ -24,6 +24,11 @@
  *
  * ***** END GPL LICENSE BLOCK *****
  */
+
+/** \file boolop/intern/BOP_BSPNode.h
+ *  \ingroup boolopintern
+ */
+
  
 #ifndef BOP_BSPNODE_H
 #define BOP_BSPNODE_H

Modified: trunk/blender/intern/boolop/intern/BOP_BSPTree.cpp
===================================================================
--- trunk/blender/intern/boolop/intern/BOP_BSPTree.cpp	2011-02-25 10:24:29 UTC (rev 35142)
+++ trunk/blender/intern/boolop/intern/BOP_BSPTree.cpp	2011-02-25 10:32:33 UTC (rev 35143)
@@ -1,4 +1,4 @@
-/**
+/*
  * ***** BEGIN GPL LICENSE BLOCK *****
  *
  * This program is free software; you can redistribute it and/or
@@ -24,6 +24,11 @@
  *
  * ***** END GPL LICENSE BLOCK *****
  */
+
+/** \file boolop/intern/BOP_BSPTree.cpp
+ *  \ingroup boolopintern
+ */
+
  
 #include "BOP_BSPTree.h"
 #include <vector>

Modified: trunk/blender/intern/boolop/intern/BOP_BSPTree.h
===================================================================
--- trunk/blender/intern/boolop/intern/BOP_BSPTree.h	2011-02-25 10:24:29 UTC (rev 35142)
+++ trunk/blender/intern/boolop/intern/BOP_BSPTree.h	2011-02-25 10:32:33 UTC (rev 35143)
@@ -1,4 +1,4 @@
-/**
+/*
  * ***** BEGIN GPL LICENSE BLOCK *****
  *
  * This program is free software; you can redistribute it and/or
@@ -24,6 +24,11 @@
  *
  * ***** END GPL LICENSE BLOCK *****
  */
+
+/** \file boolop/intern/BOP_BSPTree.h
+ *  \ingroup boolopintern
+ */
+
  
 #ifndef BOP_BSPTREE_H
 #define BOP_BSPTREE_H

Modified: trunk/blender/intern/boolop/intern/BOP_Chrono.h
===================================================================
--- trunk/blender/intern/boolop/intern/BOP_Chrono.h	2011-02-25 10:24:29 UTC (rev 35142)
+++ trunk/blender/intern/boolop/intern/BOP_Chrono.h	2011-02-25 10:32:33 UTC (rev 35143)
@@ -1,4 +1,4 @@
-/**
+/*
  * ***** BEGIN GPL LICENSE BLOCK *****
  *
  * This program is free software; you can redistribute it and/or
@@ -25,6 +25,11 @@
  * ***** END GPL LICENSE BLOCK *****
  */
 
+/** \file boolop/intern/BOP_Chrono.h
+ *  \ingroup boolopintern
+ */
+
+
 #ifndef BOP_CHRONO_H
 #define BOP_CHRONO_H
 

Modified: trunk/blender/intern/boolop/intern/BOP_Edge.cpp
===================================================================
--- trunk/blender/intern/boolop/intern/BOP_Edge.cpp	2011-02-25 10:24:29 UTC (rev 35142)
+++ trunk/blender/intern/boolop/intern/BOP_Edge.cpp	2011-02-25 10:32:33 UTC (rev 35143)
@@ -1,4 +1,4 @@
-/**
+/*
  * ***** BEGIN GPL LICENSE BLOCK *****
  *
  * This program is free software; you can redistribute it and/or
@@ -24,6 +24,11 @@
  *
  * ***** END GPL LICENSE BLOCK *****
  */
+
+/** \file boolop/intern/BOP_Edge.cpp
+ *  \ingroup boolopintern
+ */
+
  
 #include "BOP_Edge.h"
 

Modified: trunk/blender/intern/boolop/intern/BOP_Edge.h
===================================================================
--- trunk/blender/intern/boolop/intern/BOP_Edge.h	2011-02-25 10:24:29 UTC (rev 35142)
+++ trunk/blender/intern/boolop/intern/BOP_Edge.h	2011-02-25 10:32:33 UTC (rev 35143)
@@ -1,4 +1,4 @@
-/**
+/*
  * ***** BEGIN GPL LICENSE BLOCK *****
  *
  * This program is free software; you can redistribute it and/or
@@ -24,6 +24,11 @@
  *
  * ***** END GPL LICENSE BLOCK *****
  */
+
+/** \file boolop/intern/BOP_Edge.h
+ *  \ingroup boolopintern
+ */
+
  
 #ifndef BOP_EDGE_H
 #define BOP_EDGE_H

Modified: trunk/blender/intern/boolop/intern/BOP_Face.cpp
===================================================================
--- trunk/blender/intern/boolop/intern/BOP_Face.cpp	2011-02-25 10:24:29 UTC (rev 35142)
+++ trunk/blender/intern/boolop/intern/BOP_Face.cpp	2011-02-25 10:32:33 UTC (rev 35143)
@@ -1,4 +1,4 @@
-/**
+/*
  * ***** BEGIN GPL LICENSE BLOCK *****
  *
  * This program is free software; you can redistribute it and/or
@@ -24,6 +24,11 @@
  *
  * ***** END GPL LICENSE BLOCK *****
  */
+
+/** \file boolop/intern/BOP_Face.cpp
+ *  \ingroup boolopintern
+ */
+
  
 #include "BOP_Face.h"
 

Modified: trunk/blender/intern/boolop/intern/BOP_Face.h
===================================================================
--- trunk/blender/intern/boolop/intern/BOP_Face.h	2011-02-25 10:24:29 UTC (rev 35142)
+++ trunk/blender/intern/boolop/intern/BOP_Face.h	2011-02-25 10:32:33 UTC (rev 35143)
@@ -1,4 +1,4 @@
-/**
+/*
  * ***** BEGIN GPL LICENSE BLOCK *****
  *
  * This program is free software; you can redistribute it and/or
@@ -24,6 +24,11 @@
  *
  * ***** END GPL LICENSE BLOCK *****
  */
+
+/** \file boolop/intern/BOP_Face.h
+ *  \ingroup boolopintern
+ */
+
  
 #ifndef BOP_FACE_H
 #define BOP_FACE_H

Modified: trunk/blender/intern/boolop/intern/BOP_Face2Face.cpp
===================================================================
--- trunk/blender/intern/boolop/intern/BOP_Face2Face.cpp	2011-02-25 10:24:29 UTC (rev 35142)
+++ trunk/blender/intern/boolop/intern/BOP_Face2Face.cpp	2011-02-25 10:32:33 UTC (rev 35143)
@@ -1,4 +1,4 @@
-/**
+/*
  *
  * $Id$
  *
@@ -27,6 +27,11 @@
  *
  * ***** END GPL LICENSE BLOCK *****
  */
+
+/** \file boolop/intern/BOP_Face2Face.cpp
+ *  \ingroup boolopintern
+ */
+
  
 #include "BOP_Face2Face.h"
 #include "BOP_BBox.h"

Modified: trunk/blender/intern/boolop/intern/BOP_Face2Face.h
===================================================================
--- trunk/blender/intern/boolop/intern/BOP_Face2Face.h	2011-02-25 10:24:29 UTC (rev 35142)
+++ trunk/blender/intern/boolop/intern/BOP_Face2Face.h	2011-02-25 10:32:33 UTC (rev 35143)
@@ -1,4 +1,4 @@
-/**
+/*
  * ***** BEGIN GPL LICENSE BLOCK *****
  *
  * This program is free software; you can redistribute it and/or
@@ -24,6 +24,11 @@
  *
  * ***** END GPL LICENSE BLOCK *****
  */
+
+/** \file boolop/intern/BOP_Face2Face.h
+ *  \ingroup boolopintern
+ */
+
  
 #ifndef BOP_FACE2FACE_H
 #define BOP_FACE2FACE_H

Modified: trunk/blender/intern/boolop/intern/BOP_Indexs.h
===================================================================
--- trunk/blender/intern/boolop/intern/BOP_Indexs.h	2011-02-25 10:24:29 UTC (rev 35142)
+++ trunk/blender/intern/boolop/intern/BOP_Indexs.h	2011-02-25 10:32:33 UTC (rev 35143)
@@ -1,4 +1,4 @@
-/**
+/*
  * ***** BEGIN GPL LICENSE BLOCK *****
  *
  * This program is free software; you can redistribute it and/or
@@ -24,6 +24,11 @@
  *
  * ***** END GPL LICENSE BLOCK *****
  */
+
+/** \file boolop/intern/BOP_Indexs.h
+ *  \ingroup boolopintern
+ */
+
  
 #ifndef BOP_Indexs_H
 #define BOP_Indexs_H

Modified: trunk/blender/intern/boolop/intern/BOP_Interface.cpp
===================================================================
--- trunk/blender/intern/boolop/intern/BOP_Interface.cpp	2011-02-25 10:24:29 UTC (rev 35142)
+++ trunk/blender/intern/boolop/intern/BOP_Interface.cpp	2011-02-25 10:32:33 UTC (rev 35143)
@@ -1,4 +1,4 @@
-/**
+/*
  * ***** BEGIN GPL LICENSE BLOCK *****
  *
  * This program is free software; you can redistribute it and/or
@@ -24,6 +24,11 @@
  *
  * ***** END GPL LICENSE BLOCK *****
  */
+
+/** \file boolop/intern/BOP_Interface.cpp
+ *  \ingroup boolopintern
+ */
+
  
 #include <iostream>
 #include <map>

Modified: trunk/blender/intern/boolop/intern/BOP_MathUtils.cpp
===================================================================
--- trunk/blender/intern/boolop/intern/BOP_MathUtils.cpp	2011-02-25 10:24:29 UTC (rev 35142)
+++ trunk/blender/intern/boolop/intern/BOP_MathUtils.cpp	2011-02-25 10:32:33 UTC (rev 35143)
@@ -1,4 +1,4 @@
-/**
+/*
  *
  * $Id$
  *
@@ -27,6 +27,11 @@
  *
  * ***** END GPL LICENSE BLOCK *****
  */
+
+/** \file boolop/intern/BOP_MathUtils.cpp
+ *  \ingroup boolopintern
+ */
+
  
 #include "BOP_MathUtils.h"
 #include <iostream>

Modified: trunk/blender/intern/boolop/intern/BOP_MathUtils.h
===================================================================
--- trunk/blender/intern/boolop/intern/BOP_MathUtils.h	2011-02-25 10:24:29 UTC (rev 35142)
+++ trunk/blender/intern/boolop/intern/BOP_MathUtils.h	2011-02-25 10:32:33 UTC (rev 35143)
@@ -1,4 +1,4 @@
-/**
+/*
  *
  * $Id$
  *
@@ -27,6 +27,11 @@
  *
  * ***** END GPL LICENSE BLOCK *****
  */
+
+/** \file boolop/intern/BOP_MathUtils.h
+ *  \ingroup boolopintern
+ */
+
  
 #ifndef BOP_MATHUTILS_H
 #define BOP_MATHUTILS_H

Modified: trunk/blender/intern/boolop/intern/BOP_Merge.cpp
===================================================================
--- trunk/blender/intern/boolop/intern/BOP_Merge.cpp	2011-02-25 10:24:29 UTC (rev 35142)

@@ Diff output truncated at 10240 characters. @@



More information about the Bf-blender-cvs mailing list