OSDN Git Service

fix shift FACTOR
[meshio/pymeshio.git] / blender25-meshio / pymeshio / vmd.py
index 81596a2..52ea756 100644 (file)
@@ -1,7 +1,15 @@
-###############################################################################
-# VMD
-###############################################################################
+# coding: utf-8
+"""
+VMDの読み込み
+http://yumin3123.at.webry.info/200810/article_4.html
+http://atupdate.web.fc2.com/vmd_format.htm
+"""
+
+
 class ShapeData(object):
+    """
+    morphing animation data.
+    """
     __slots__=['name', 'frame', 'ratio']
     def __init__(self, name):
         self.name=name
@@ -12,6 +20,9 @@ class ShapeData(object):
         return cmp(self.frame, other.frame)
 
 class MotionData(object):
+    """
+    bone animation data.
+    """
     __slots__=['name', 'frame', 'pos', 'q', 'complement']
     def __init__(self, name):
         self.name=name