From 485bedc215222db5ce002b9e36049d97e178057d Mon Sep 17 00:00:00 2001 From: Ryan Schmidt Date: Sat, 22 Oct 2016 11:37:03 -0400 Subject: [PATCH] move code up one directory (this is a library so no sense having the extra dir) --- .gitignore | 2 ++ {geometry3Sharp/Properties => Properties}/AssemblyInfo.cs | 0 {geometry3Sharp/core => core}/DVector.cs | 0 {geometry3Sharp/core => core}/Util.cs | 0 geometry3Sharp/geometry3Sharp.csproj => geometry3Sharp.csproj | 0 {geometry3Sharp/io => io}/MeshIO.cs | 0 {geometry3Sharp/io => io}/OBJReader.cs | 0 {geometry3Sharp/io => io}/OBJWriter.cs | 0 {geometry3Sharp/io => io}/StandardMeshReader.cs | 0 {geometry3Sharp/io => io}/StandardMeshWriter.cs | 0 {geometry3Sharp/math => math}/Vector3d.cs | 0 {geometry3Sharp/math => math}/Vector3f.cs | 0 {geometry3Sharp/math => math}/Vector3i.cs | 0 {geometry3Sharp/mesh => mesh}/IMesh.cs | 0 {geometry3Sharp/mesh => mesh}/SimpleMesh.cs | 0 15 files changed, 2 insertions(+) rename {geometry3Sharp/Properties => Properties}/AssemblyInfo.cs (100%) rename {geometry3Sharp/core => core}/DVector.cs (100%) rename {geometry3Sharp/core => core}/Util.cs (100%) rename geometry3Sharp/geometry3Sharp.csproj => geometry3Sharp.csproj (100%) rename {geometry3Sharp/io => io}/MeshIO.cs (100%) rename {geometry3Sharp/io => io}/OBJReader.cs (100%) rename {geometry3Sharp/io => io}/OBJWriter.cs (100%) rename {geometry3Sharp/io => io}/StandardMeshReader.cs (100%) rename {geometry3Sharp/io => io}/StandardMeshWriter.cs (100%) rename {geometry3Sharp/math => math}/Vector3d.cs (100%) rename {geometry3Sharp/math => math}/Vector3f.cs (100%) rename {geometry3Sharp/math => math}/Vector3i.cs (100%) rename {geometry3Sharp/mesh => mesh}/IMesh.cs (100%) rename {geometry3Sharp/mesh => mesh}/SimpleMesh.cs (100%) 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