Skip to content

Commit 15d1fb3

Browse files
authored
Merge pull request izrik#46 from izrik/fbxcli
Fbxcli
2 parents a262401 + c1e077d commit 15d1fb3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+2764
-2062
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,3 +192,4 @@ AssemblyInfo.Git.cs
192192
_scratch*
193193
.idea
194194
*.pyc
195+
.vs

Converter.cs

Lines changed: 43 additions & 1435 deletions
Large diffs are not rendered by default.

Converter2000.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using System;
2+
using System.Linq;
3+
using System.Collections.Generic;
4+
5+
namespace FbxSharp
6+
{
7+
public class Converter2000 : IConverter
8+
{
9+
public FbxScene ConvertScene(List<ParseObject> parsedObjects)
10+
{
11+
throw new NotImplementedException();
12+
}
13+
}
14+
}

Converter2001.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using System;
2+
using System.Linq;
3+
using System.Collections.Generic;
4+
5+
namespace FbxSharp
6+
{
7+
public class Converter2001 : IConverter
8+
{
9+
public FbxScene ConvertScene(List<ParseObject> parsedObjects)
10+
{
11+
throw new NotImplementedException();
12+
}
13+
}
14+
}

Converter3000.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using System;
2+
using System.Linq;
3+
using System.Collections.Generic;
4+
5+
namespace FbxSharp
6+
{
7+
public class Converter3000 : IConverter
8+
{
9+
public FbxScene ConvertScene(List<ParseObject> parsedObjects)
10+
{
11+
throw new NotImplementedException();
12+
}
13+
}
14+
}

Converter3001.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using System;
2+
using System.Linq;
3+
using System.Collections.Generic;
4+
5+
namespace FbxSharp
6+
{
7+
public class Converter3001 : IConverter
8+
{
9+
public FbxScene ConvertScene(List<ParseObject> parsedObjects)
10+
{
11+
throw new NotImplementedException();
12+
}
13+
}
14+
}

Converter4000.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using System;
2+
using System.Linq;
3+
using System.Collections.Generic;
4+
5+
namespace FbxSharp
6+
{
7+
public class Converter4000 : IConverter
8+
{
9+
public FbxScene ConvertScene(List<ParseObject> parsedObjects)
10+
{
11+
throw new NotImplementedException();
12+
}
13+
}
14+
}

Converter4001.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using System;
2+
using System.Linq;
3+
using System.Collections.Generic;
4+
5+
namespace FbxSharp
6+
{
7+
public class Converter4001 : IConverter
8+
{
9+
public FbxScene ConvertScene(List<ParseObject> parsedObjects)
10+
{
11+
throw new NotImplementedException();
12+
}
13+
}
14+
}

Converter4050.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using System;
2+
using System.Linq;
3+
using System.Collections.Generic;
4+
5+
namespace FbxSharp
6+
{
7+
public class Converter4050 : IConverter
8+
{
9+
public FbxScene ConvertScene(List<ParseObject> parsedObjects)
10+
{
11+
throw new NotImplementedException();
12+
}
13+
}
14+
}

Converter5000.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using System;
2+
using System.Linq;
3+
using System.Collections.Generic;
4+
5+
namespace FbxSharp
6+
{
7+
public class Converter5000 : IConverter
8+
{
9+
public FbxScene ConvertScene(List<ParseObject> parsedObjects)
10+
{
11+
throw new NotImplementedException();
12+
}
13+
}
14+
}

0 commit comments

Comments
 (0)