Skip to content

Commit

Permalink
Rename KethaneGeodesicGrid -> GeodesicGrid
Browse files Browse the repository at this point in the history
  • Loading branch information
Majiir committed Sep 7, 2014
1 parent 684235a commit 013c31b
Show file tree
Hide file tree
Showing 27 changed files with 41 additions and 41 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Kethane.EnumerableExtensions;
using GeodesicGrid.EnumerableExtensions;
using System;
using System.Linq;
using Mathf = UnityEngine.Mathf;

namespace Kethane.GeodesicGrid
namespace GeodesicGrid
{
public class BoundsMap
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using Kethane.EnumerableExtensions;
using GeodesicGrid.EnumerableExtensions;
using System;
using System.Collections.Generic;
using System.Linq;
using Ray = UnityEngine.Ray;
using Transform = UnityEngine.Transform;
using Vector3 = UnityEngine.Vector3;

namespace Kethane.GeodesicGrid
namespace GeodesicGrid
{
public struct Cell : IEquatable<Cell>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Collections.Generic;
using System.Linq;

namespace Kethane.GeodesicGrid
namespace GeodesicGrid
{
public class CellMap<T> : IEnumerable<KeyValuePair<Cell, T>>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections;
using System.Collections.Generic;

namespace Kethane.GeodesicGrid
namespace GeodesicGrid
{
public class CellSet : IEnumerable<Cell>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

namespace Kethane.GeodesicGrid
namespace GeodesicGrid
{
public enum ChildType : byte
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;

namespace Kethane.EnumerableExtensions
namespace GeodesicGrid.EnumerableExtensions
{
public static class AppendPrepend
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;

namespace Kethane.EnumerableExtensions
namespace GeodesicGrid.EnumerableExtensions
{
public static class EdgesEx
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;

namespace Kethane.EnumerableExtensions
namespace GeodesicGrid.EnumerableExtensions
{
public static class MinMaxBy
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

namespace Kethane.EnumerableExtensions
namespace GeodesicGrid.EnumerableExtensions
{
public struct Pair<T>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;

namespace Kethane.EnumerableExtensions
namespace GeodesicGrid.EnumerableExtensions
{
public static class Repeat
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Generic;

namespace Kethane.EnumerableExtensions
namespace GeodesicGrid.EnumerableExtensions
{
internal class ReverseComparer<T> : IComparer<T>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<ProjectGuid>{0DF219BC-39F0-4AF8-9085-1A4120D8D536}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>KethaneGeodesicGrid</RootNamespace>
<AssemblyName>KethaneGeodesicGrid</AssemblyName>
<RootNamespace>GeodesicGrid</RootNamespace>
<AssemblyName>GeodesicGrid</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
Expand Down Expand Up @@ -42,14 +42,14 @@
<Compile Include="EnumerableExtensions\Pair.cs" />
<Compile Include="EnumerableExtensions\Repeat.cs" />
<Compile Include="EnumerableExtensions\ReverseComparer.cs" />
<Compile Include="GeodesicGrid\BoundsMap.cs" />
<Compile Include="GeodesicGrid\Cell.cs" />
<Compile Include="GeodesicGrid\CellMap.cs" />
<Compile Include="GeodesicGrid\CellSet.cs" />
<Compile Include="GeodesicGrid\ChildType.cs" />
<Compile Include="GeodesicGrid\IntMath.cs" />
<Compile Include="GeodesicGrid\Triangle.cs" />
<Compile Include="GeodesicGrid\TriangleHit.cs" />
<Compile Include="BoundsMap.cs" />
<Compile Include="Cell.cs" />
<Compile Include="CellMap.cs" />
<Compile Include="CellSet.cs" />
<Compile Include="ChildType.cs" />
<Compile Include="IntMath.cs" />
<Compile Include="Triangle.cs" />
<Compile Include="TriangleHit.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

namespace Kethane.GeodesicGrid
namespace GeodesicGrid
{
internal static class IntMath
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("KethaneGeodesicGrid")]
[assembly: AssemblyTitle("GeodesicGrid")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Majiir")]
[assembly: AssemblyProduct("Kethane")]
[assembly: AssemblyProduct("GeodesicGrid")]
[assembly: AssemblyCopyright("Copyright © Majiir 2014")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using Kethane.EnumerableExtensions;
using GeodesicGrid.EnumerableExtensions;
using System;
using System.Collections.Generic;
using System.Linq;
using Ray = UnityEngine.Ray;
using Transform = UnityEngine.Transform;
using Vector3 = UnityEngine.Vector3;

namespace Kethane.GeodesicGrid
namespace GeodesicGrid
{
public struct Triangle
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Vector3 = UnityEngine.Vector3;

namespace Kethane.GeodesicGrid
namespace GeodesicGrid
{
public struct TriangleHit
{
Expand Down
2 changes: 1 addition & 1 deletion Plugin/Kethane.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ VisualStudioVersion = 12.0.21005.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Kethane", "Kethane\Kethane.csproj", "{8D1501AC-6C11-459B-9561-6CC5E3EC15FE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KethaneGeodesicGrid", "KethaneGeodesicGrid\KethaneGeodesicGrid.csproj", "{0DF219BC-39F0-4AF8-9085-1A4120D8D536}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GeodesicGrid", "GeodesicGrid\GeodesicGrid.csproj", "{0DF219BC-39F0-4AF8-9085-1A4120D8D536}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
2 changes: 1 addition & 1 deletion Plugin/Kethane/BodyResourceData.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Kethane.GeodesicGrid;
using GeodesicGrid;
using System;
using UnityEngine;

Expand Down
2 changes: 1 addition & 1 deletion Plugin/Kethane/Generators/CellularResourceGenerator.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Kethane.GeodesicGrid;
using GeodesicGrid;
using System;
using System.Linq;

Expand Down
2 changes: 1 addition & 1 deletion Plugin/Kethane/Generators/LegacyResourceGenerator.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Kethane.GeodesicGrid;
using GeodesicGrid;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
Expand Down
2 changes: 1 addition & 1 deletion Plugin/Kethane/IResourceGenerator.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Kethane.GeodesicGrid;
using GeodesicGrid;
using System;

namespace Kethane
Expand Down
4 changes: 2 additions & 2 deletions Plugin/Kethane/Kethane.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@
<EmbeddedResource Include="Resources\AlphaUnlitVertexColored.txt" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\KethaneGeodesicGrid\KethaneGeodesicGrid.csproj">
<ProjectReference Include="..\GeodesicGrid\GeodesicGrid.csproj">
<Project>{0df219bc-39f0-4af8-9085-1a4120d8d536}</Project>
<Name>KethaneGeodesicGrid</Name>
<Name>GeodesicGrid</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Plugin/Kethane/KethaneData.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Kethane.GeodesicGrid;
using GeodesicGrid;
using System;
using System.Collections.Generic;
using System.Linq;
Expand Down
2 changes: 1 addition & 1 deletion Plugin/Kethane/PartModules/KethaneExtractor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Kethane.GeodesicGrid;
using GeodesicGrid;
using Kethane.UserInterface;
using System;
using System.Collections.Generic;
Expand Down
2 changes: 1 addition & 1 deletion Plugin/Kethane/Scenarios/KethaneScanningTutorial.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Kethane.GeodesicGrid;
using GeodesicGrid;
using Kethane.PartModules;
using Kethane.UserInterface;
using System;
Expand Down
2 changes: 1 addition & 1 deletion Plugin/Kethane/UserInterface/MapOverlay.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Kethane.GeodesicGrid;
using GeodesicGrid;
using Kethane.Toolbar;
using System;
using System.Collections.Generic;
Expand Down
2 changes: 1 addition & 1 deletion Plugin/Kethane/UserInterface/TerrainData.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Kethane.GeodesicGrid;
using GeodesicGrid;
using System;
using System.Collections.Generic;

Expand Down

0 comments on commit 013c31b

Please sign in to comment.