コード例 #1
0
ファイル: FbxNodeList.cs プロジェクト: ikorin24/FbxParser
 internal Enumerator(FbxNode_ *node, int count)
 {
     _node    = node;
     _count   = count;
     _current = null;
     _i       = 0;
 }
コード例 #2
0
ファイル: FbxNodeList.cs プロジェクト: ikorin24/FbxParser
 public bool MoveNext()
 {
     if (_i >= _count)
     {
         return(false);
     }
     _current = _node + _i;
     _i++;
     return(true);
 }
コード例 #3
0
ファイル: FbxNodeList.cs プロジェクト: ikorin24/FbxParser
 public void Reset()
 {
     _current = null;
     _i       = 0;
 }
コード例 #4
0
 public FbxNodeChildrenInternal(FbxNode_ *pointer, int count)
 {
     Pointer = pointer;
     Count   = count;
 }
コード例 #5
0
 internal FbxNode(FbxNode_ *ptr)
 {
     _ptr = (IntPtr)ptr;
 }