Revision: 37129
          
http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=37129
Author:   psy-fi
Date:     2011-06-03 15:00:54 +0000 (Fri, 03 Jun 2011)
Log Message:
-----------
comment moved to right position

Modified Paths:
--------------
    branches/soc-2011-onion/source/blender/blenlib/BLI_editVert.h

Modified: branches/soc-2011-onion/source/blender/blenlib/BLI_editVert.h
===================================================================
--- branches/soc-2011-onion/source/blender/blenlib/BLI_editVert.h       
2011-06-03 14:54:37 UTC (rev 37128)
+++ branches/soc-2011-onion/source/blender/blenlib/BLI_editVert.h       
2011-06-03 15:00:54 UTC (rev 37129)
@@ -51,7 +51,7 @@
 {
        struct EditVert *next, *prev;
        union {
-               /* some lean storage for temporary usage 
+               /* some lean storage for temporary usage
                 * in editmesh routines
                 */
                struct EditVert *v;
@@ -65,11 +65,11 @@
        float no[3]; /*vertex normal */
        float co[3]; /*vertex location */
        short xs, ys; /* used to store a screenspace 2d projection of the verts 
*/
-       
+
        /* f stores selection eg. if (eve->f & SELECT) {...
        h for hidden. if (!eve->h) {...
        f1 and f2 can be used for temp data, clear them first*/
-       unsigned char f, h, f1, f2; 
+       unsigned char f, h, f1, f2;
        float bweight;
        short fast;     /* only 0 or 1, for editmesh_fastmalloc, do not store 
temp data here! */
        int hash;     /* internal editmesh.c use only, don't touch! */
@@ -91,7 +91,7 @@
        struct EditEdge *next, *prev;
        struct EditVert *v1, *v2;
        union {
-               /* some lean storage for temporary usage 
+               /* some lean storage for temporary usage
                 * in editmesh routines
                 */
                struct EditVert *v;
@@ -118,7 +118,7 @@
        struct EditVert *v1, *v2, *v3, *v4;
        struct EditEdge *e1, *e2, *e3, *e4;
        union {
-               /* some lean storage for temporary usage 
+               /* some lean storage for temporary usage
                 * in editmesh routines
                 */
                struct EditVert *v;
@@ -156,21 +156,18 @@
        ListBase verts, edges, faces;
        ListBase selected; /*EditSelections. Used to store the order in which 
things are selected.*/
        HashEdge *hashedgetab;
-       
+
        /* this is for the editmesh_fastmalloc */
        EditVert *allverts, *curvert;
        EditEdge *alledges, *curedge;
        EditFace *allfaces, *curface;
-               /* DerivedMesh caches... note that derived cage can be 
equivalent
-                * to derived final, care should be taken on release.
-                */
-       
+
        /* used for keeping track of the last clicked on face - so the space 
image
         * when using the last selected face - (EditSelection) the space image 
flickered too much
-        * 
+        *
         * never access this directly, use EM_set_actFace and EM_get_actFace */
-       EditFace *act_face; 
-       
+       EditFace *act_face;
+
        /* copy from scene */
        short selectmode;
        /* copy from object actcol */
@@ -179,7 +176,10 @@
        int totvert, totedge, totface, totvertsel, totedgesel, totfacesel;
        /* shape key being edited */
        int shapenr;
-       
+
+       /* DerivedMesh caches... note that derived cage can be equivalent
+        * to derived final, care should be taken on release.
+        */
        struct DerivedMesh *derivedCage, *derivedFinal;
        /* the custom data layer mask that was last used to calculate
         * derivedCage and derivedFinal

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to