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
| Dictionary<int, bool[,]> EvolveWithLevels(Dictionary<int,bool[,]> levels) | |
| { | |
| Dictionary<int, bool[,]> newLevels = new Dictionary<int, bool[,]>(); | |
| foreach(var kvp in levels) | |
| { | |
| int curLevel = kvp.Key; | |
| bool[,] map = kvp.Value; | |
| bool[,] newMap = new bool[mapHeight, mapWidth]; | |
| for(var y = 0; y < map.GetLength(0); y++) |
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; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| namespace esp32_flash_to_elf | |
| { | |
| public class ESP32NVSKeyPair | |
| { |
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; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| using System.Text.Unicode; | |
| namespace esp32_flash_to_elf |
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; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace DMSLib | |
| { | |
| public class EndianBinaryReader : BinaryReader |
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; | |
| using System.Collections.Generic; | |
| using System.Drawing; | |
| using System.IO; | |
| using System.Text; | |
| namespace TraegerImage | |
| { | |
| class RotateFlipBug | |
| { |
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; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Net.Http.Headers; | |
| using System.Security.Cryptography; | |
| using System.Security.Policy; | |
| using System.Text; |
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
| //Locate and fixup functions | |
| //@author Tim Slater | |
| //@category ESP32 | |
| //@keybinding | |
| //@menupath | |
| //@toolbar | |
| import java.util.ArrayList; | |
| import java.util.HashSet; | |
| import java.util.Set; |
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
| 7 -> 6 -> 1 | |
| 8 -> 1 -> 7 | |
| 10 -> 7 -> 3 | |
| 12 -> 10 -> 2 | |
| 13 -> 2 -> 11 | |
| 15 -> 12 -> 3 | |
| 16 -> 11 -> 5 | |
| 18 -> 15 -> 3 | |
| 19 -> 16 -> 3 | |
| 20 -> 19 -> 1 |
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 Emgu.CV; | |
| using Emgu.CV.CvEnum; | |
| using Emgu.CV.Structure; | |
| using Emgu.CV.Util; | |
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System.ComponentModel; | |
| using System.Data; | |
| using System.Diagnostics; |
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 Emgu.CV; | |
| using Emgu.CV.CvEnum; | |
| using KdTree; | |
| using KdTree.Math; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Drawing; | |
| using System.Linq; | |
| using System.Numerics; | |
| using System.Threading.Tasks; |