OSDN Git Service

remove comments.
authornomeu <nomeu@nomeu.org>
Mon, 26 Jan 2015 10:18:04 +0000 (19:18 +0900)
committernomeu <nomeu@nomeu.org>
Mon, 26 Jan 2015 10:36:31 +0000 (19:36 +0900)
MqoFile.cs
TSOFile.cs

index 770ad3e..6770377 100644 (file)
@@ -57,7 +57,6 @@ namespace Tso2MqoGui
 
         public void CreateNormal()
         {
-            // 法線生成
             Point3[] normal = new Point3[vertices.Count];
 
             foreach (MqoFace face in faces)
index eb956c3..3300040 100644 (file)
@@ -681,8 +681,6 @@ namespace Tso2MqoGui
         public UInt32 Idx;
         public Point3 Nrm;
         public Point2 Tex;
-        //public int          Count;
-        //public Weights[]    Weights;
 
         public Vertex(Point3 pos, Point4 wgt, UInt32 idx, Point3 nrm, Point2 tex)
         {
@@ -722,12 +720,4 @@ namespace Tso2MqoGui
             return Pos.Equals(v.Pos) && Nrm.Equals(v.Nrm) && Tex.Equals(v.Tex);
         }
     }
-
-    /*
-    public struct Weights
-    {
-        public int          Index;
-        public float        Weight;
-    }
-    */
 }