-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e1535ac
commit 158772f
Showing
42 changed files
with
137 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<Properties> | ||
<MonoDevelop.Ide.DebuggingService.Breakpoints> | ||
<BreakpointStore /> | ||
</MonoDevelop.Ide.DebuggingService.Breakpoints> | ||
<MultiItemStartupConfigurations /> | ||
<MonoDevelop.Ide.Workspace ActiveConfiguration="Debug" /> | ||
<MonoDevelop.Ide.Workbench> | ||
<Pads> | ||
<Pad Id="ProjectPad"> | ||
<State name="__root__"> | ||
<Node name="HilbertsCurve_CS" expanded="True"> | ||
<Node name="HilbertsCurve_CS" selected="True" /> | ||
</Node> | ||
</State> | ||
</Pad> | ||
<Pad Id="MonoDevelop.Debugger.WatchPad"> | ||
<State /> | ||
</Pad> | ||
</Pads> | ||
</MonoDevelop.Ide.Workbench> | ||
<MonoDevelop.Ide.DebuggingService.PinnedWatches /> | ||
</Properties> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<Properties> | ||
<MonoDevelop.Ide.DebuggingService.Breakpoints> | ||
<BreakpointStore /> | ||
</MonoDevelop.Ide.DebuggingService.Breakpoints> | ||
<MultiItemStartupConfigurations /> | ||
<MonoDevelop.Ide.Workspace ActiveConfiguration="Debug" /> | ||
<MonoDevelop.Ide.Workbench ActiveDocument="Hilberts_Curve.cs"> | ||
<Files> | ||
<File FileName="Hilberts_Curve.cs" Line="1" Column="1" /> | ||
</Files> | ||
<Pads> | ||
<Pad Id="ProjectPad"> | ||
<State name="__root__"> | ||
<Node name="Hilberts_Curve_CS" expanded="True"> | ||
<Node name="Hilberts_Curve_CS" expanded="True"> | ||
<Node name="Hilberts_Curve.cs" selected="True" /> | ||
</Node> | ||
</Node> | ||
</State> | ||
</Pad> | ||
<Pad Id="MonoDevelop.Debugger.WatchPad"> | ||
<State /> | ||
</Pad> | ||
</Pads> | ||
</MonoDevelop.Ide.Workbench> | ||
<MonoDevelop.Ide.DebuggingService.PinnedWatches /> | ||
</Properties> |
1 change: 1 addition & 0 deletions
1
.vs/Hilberts_Curve_CS/xs/project-cache/Hilberts_Curve_CS-Debug.json
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
from hilbertcurve import HilbertCurve, _binary_repr | ||
p=2; n=2 | ||
a = [(0, 0), (0, 1), (1, 0), (1, 1)] | ||
new_order_arr = [] | ||
hilbert_curve = HilbertCurve(p, n) | ||
|
||
print(_binary_repr(10, 2*2)) | ||
print(hilbert_curve.distance_from_point([6, 9])) | ||
#print(hilbert_curve.point_from_distance(6)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 16 | ||
VisualStudioVersion = 25.0.1703.6 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hilberts_Curve_CS", "Hilberts_Curve_CS.csproj", "{1BFD289A-F7C2-4475-88B6-A7D2EC4A7B6F}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{1BFD289A-F7C2-4475-88B6-A7D2EC4A7B6F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{1BFD289A-F7C2-4475-88B6-A7D2EC4A7B6F}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{1BFD289A-F7C2-4475-88B6-A7D2EC4A7B6F}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{1BFD289A-F7C2-4475-88B6-A7D2EC4A7B6F}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {3C9EC47A-4C78-458C-83AD-CBC1448FD878} | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file renamed
BIN
+10.5 KB
obj/Debug/net6.0/HilbertsCurve_CS.dll → bin/Debug/net6.0/Hilberts_Curve_CS.dll
Binary file not shown.
Binary file renamed
BIN
+13.1 KB
obj/Debug/net6.0/HilbertsCurve_CS.pdb → bin/Debug/net6.0/Hilberts_Curve_CS.pdb
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// <autogenerated /> | ||
using System; | ||
using System.Reflection; | ||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
1 change: 0 additions & 1 deletion
1
obj/Debug/net6.0/HilbertsCurve_CS.csproj.CoreCompileInputs.cache
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
obj/Debug/net6.0/HilbertsCurve_CS.csproj.FileListAbsolute.txt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
5422f7f04140b8e4b86422005d48bafb3df0eb5d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Binary file renamed
BIN
+144 Bytes
...ebug/net6.0/HilbertsCurve_CS.assets.cache → ...bug/net6.0/Hilberts_Curve_CS.assets.cache
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions
1
obj/Debug/net6.0/Hilberts_Curve_CS.csproj.CoreCompileInputs.cache
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
39b9f0f6893dcc590e3f5ad8289f072bfaf9fae7 |
24 changes: 24 additions & 0 deletions
24
obj/Debug/net6.0/Hilberts_Curve_CS.csproj.FileListAbsolute.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/Hilberts_Curve_CS/bin/Debug/net6.0/Hilberts_Curve_CS.deps.json | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/Hilberts_Curve_CS/bin/Debug/net6.0/Hilberts_Curve_CS.dll | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/Hilberts_Curve_CS/bin/Debug/net6.0/Hilberts_Curve_CS.pdb | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/Hilberts_Curve_CS/obj/Debug/net6.0/Hilberts_Curve_CS.csproj.AssemblyReference.cache | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/Hilberts_Curve_CS/obj/Debug/net6.0/Hilberts_Curve_CS.GeneratedMSBuildEditorConfig.editorconfig | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/Hilberts_Curve_CS/obj/Debug/net6.0/Hilberts_Curve_CS.AssemblyInfoInputs.cache | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/Hilberts_Curve_CS/obj/Debug/net6.0/Hilberts_Curve_CS.AssemblyInfo.cs | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/Hilberts_Curve_CS/obj/Debug/net6.0/Hilberts_Curve_CS.csproj.CoreCompileInputs.cache | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/Hilberts_Curve_CS/obj/Debug/net6.0/Hilberts_Curve_CS.dll | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/Hilberts_Curve_CS/obj/Debug/net6.0/refint/Hilberts_Curve_CS.dll | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/Hilberts_Curve_CS/obj/Debug/net6.0/Hilberts_Curve_CS.pdb | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/Hilberts_Curve_CS/obj/Debug/net6.0/ref/Hilberts_Curve_CS.dll | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/bin/Debug/net6.0/Hilberts_Curve_CS.deps.json | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/bin/Debug/net6.0/Hilberts_Curve_CS.dll | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/bin/Debug/net6.0/Hilberts_Curve_CS.pdb | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/obj/Debug/net6.0/Hilberts_Curve_CS.csproj.AssemblyReference.cache | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/obj/Debug/net6.0/Hilberts_Curve_CS.GeneratedMSBuildEditorConfig.editorconfig | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/obj/Debug/net6.0/Hilberts_Curve_CS.AssemblyInfoInputs.cache | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/obj/Debug/net6.0/Hilberts_Curve_CS.AssemblyInfo.cs | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/obj/Debug/net6.0/Hilberts_Curve_CS.csproj.CoreCompileInputs.cache | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/obj/Debug/net6.0/Hilberts_Curve_CS.dll | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/obj/Debug/net6.0/refint/Hilberts_Curve_CS.dll | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/obj/Debug/net6.0/Hilberts_Curve_CS.pdb | ||
/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/obj/Debug/net6.0/ref/Hilberts_Curve_CS.dll |
Binary file renamed
BIN
+10.5 KB
bin/Debug/net6.0/HilbertsCurve_CS.dll → obj/Debug/net6.0/Hilberts_Curve_CS.dll
Binary file not shown.
Binary file renamed
BIN
+13.1 KB
bin/Debug/net6.0/HilbertsCurve_CS.pdb → obj/Debug/net6.0/Hilberts_Curve_CS.pdb
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
12 changes: 6 additions & 6 deletions
12
...HilbertsCurve_CS.csproj.nuget.dgspec.json → ...ilberts_Curve_CS.csproj.nuget.dgspec.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
obj/Release/net6.0/HilbertsCurve_CS.GeneratedMSBuildEditorConfig.editorconfig
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"version": 2, | ||
"dgSpecHash": "qoLcw850jiJfPD92NXyh6rdtcd0/lNDOZ+1Fv0V3z01iEfdXNUH+JDdHmP941F1dtCKmjpSJbUKZzIzn7qHbTQ==", | ||
"dgSpecHash": "EMtbsD9PZWIafv+t60LwbofazajGiyq+nuhbsvOH/OezEkOXeBuAWbGmIV0Oo/fsMB5p4NNw9pseAuSpgvJ0mA==", | ||
"success": true, | ||
"projectFilePath": "/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/HilbertsCurve_CS/HilbertsCurve_CS/HilbertsCurve_CS.csproj", | ||
"projectFilePath": "/Users/rus_mermaid/Desktop/Hard_Drive_SSD/Macbook_ProM1_2022/CP_projects/Hilberts_Curve_CS/Hilberts_Curve_CS.csproj", | ||
"expectedPackageFiles": [], | ||
"logs": [] | ||
} |