This file contains hidden or 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
| using Apila; | |
| using glfw; | |
| using static glfw.Native; | |
| // using ImGuiNET; | |
| using Hexa.NET.ImGui; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.Runtime.InteropServices; | |
| using System.Threading.Tasks; |
This file contains hidden or 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
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System.Collections.ObjectModel; | |
| namespace Apila { | |
| // Maps T1 <-> T2 one-to-one (bijective) | |
| public class BiDictionary<T1, T2> : IEnumerable<KeyValuePair<T1, T2>> { | |
| readonly Dictionary<T1, T2> forward; | |
| readonly Dictionary<T2, T1> backward; | |
| readonly ReadOnlyDictionary<T1, T2> roForward; |
This file contains hidden or 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
| using DotGLFW; | |
| using ImGuiNET; | |
| using System; | |
| using System.Diagnostics; | |
| using System.Numerics; | |
| using System.Runtime.CompilerServices; | |
| using System.Runtime.InteropServices; | |
| using static DotGL.GL; | |
| using static lidl.GLExtensions; |