diff --git a/.gitignore b/.gitignore index b98d6af7..35b62c20 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,5 @@ geometry3Sharp/bin geometry3Sharp/obj geometry3Sharp.csproj.user +bin +obj diff --git a/geometry3Sharp/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs similarity index 100% rename from geometry3Sharp/Properties/AssemblyInfo.cs rename to Properties/AssemblyInfo.cs diff --git a/geometry3Sharp/core/DVector.cs b/core/DVector.cs similarity index 100% rename from geometry3Sharp/core/DVector.cs rename to core/DVector.cs diff --git a/geometry3Sharp/core/Util.cs b/core/Util.cs similarity index 100% rename from geometry3Sharp/core/Util.cs rename to core/Util.cs diff --git a/geometry3Sharp/geometry3Sharp.csproj b/geometry3Sharp.csproj similarity index 100% rename from geometry3Sharp/geometry3Sharp.csproj rename to geometry3Sharp.csproj diff --git a/geometry3Sharp/io/MeshIO.cs b/io/MeshIO.cs similarity index 100% rename from geometry3Sharp/io/MeshIO.cs rename to io/MeshIO.cs diff --git a/geometry3Sharp/io/OBJReader.cs b/io/OBJReader.cs similarity index 100% rename from geometry3Sharp/io/OBJReader.cs rename to io/OBJReader.cs diff --git a/geometry3Sharp/io/OBJWriter.cs b/io/OBJWriter.cs similarity index 100% rename from geometry3Sharp/io/OBJWriter.cs rename to io/OBJWriter.cs diff --git a/geometry3Sharp/io/StandardMeshReader.cs b/io/StandardMeshReader.cs similarity index 100% rename from geometry3Sharp/io/StandardMeshReader.cs rename to io/StandardMeshReader.cs diff --git a/geometry3Sharp/io/StandardMeshWriter.cs b/io/StandardMeshWriter.cs similarity index 100% rename from geometry3Sharp/io/StandardMeshWriter.cs rename to io/StandardMeshWriter.cs diff --git a/geometry3Sharp/math/Vector3d.cs b/math/Vector3d.cs similarity index 100% rename from geometry3Sharp/math/Vector3d.cs rename to math/Vector3d.cs diff --git a/geometry3Sharp/math/Vector3f.cs b/math/Vector3f.cs similarity index 100% rename from geometry3Sharp/math/Vector3f.cs rename to math/Vector3f.cs diff --git a/geometry3Sharp/math/Vector3i.cs b/math/Vector3i.cs similarity index 100% rename from geometry3Sharp/math/Vector3i.cs rename to math/Vector3i.cs diff --git a/geometry3Sharp/mesh/IMesh.cs b/mesh/IMesh.cs similarity index 100% rename from geometry3Sharp/mesh/IMesh.cs rename to mesh/IMesh.cs diff --git a/geometry3Sharp/mesh/SimpleMesh.cs b/mesh/SimpleMesh.cs similarity index 100% rename from geometry3Sharp/mesh/SimpleMesh.cs rename to mesh/SimpleMesh.cs