Skip to content

Commit dd2c28f

Browse files
committed
Merge branch 'tempfix'
2 parents 3da68d7 + cb0a332 commit dd2c28f

File tree

5 files changed

+3
-15
lines changed

5 files changed

+3
-15
lines changed

MainWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace PointCloudConverter
2222
{
2323
public partial class MainWindow : Window
2424
{
25-
static readonly string version = "11.08.2024";
25+
static readonly string version = "12.08.2024";
2626
static readonly string appname = "PointCloud Converter - " + version;
2727
static readonly string rootFolder = AppDomain.CurrentDomain.BaseDirectory;
2828

PointCloudConverter.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
3737
<!-- <PackageReference Include="laszip.net" Version="1.0.0" PrivateAssets="all" /> -->
3838
<PackageReference Include="System.Drawing.Common" Version="8.0.7" />
39-
<PackageReference Include="System.Windows.Forms" Version="4.0.0" />
4039
</ItemGroup>
4140

4241
<ItemGroup>

Tools/LogText.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using PointCloudConverter.Logger;
22
using PointCloudConverter;
3-
using System;
43
using System.Diagnostics;
54

65
namespace PointCloudConverter.Logger
@@ -33,7 +32,7 @@ public class LogText : ILogger
3332
{
3433
public void Write(string msg)
3534
{
36-
//Console.WriteLine(msg);
35+
Console.WriteLine(msg);
3736
Trace.WriteLine(msg);
3837
}
3938

Tools/Tools.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
using PointCloudConverter.Structs;
22
using SharpNeatLib.Maths;
3-
using System;
4-
using System.Collections.Generic;
53
using System.Globalization;
64
using System.IO;
75
using System.Numerics;
86
using System.Reflection;
9-
using System.Runtime.InteropServices;
10-
using System.Threading;
11-
using System.Windows.Documents;
127

138
namespace PointCloudConverter
149
{

Writers/PCROOT.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
// PCROOT (v3) Exporter https://github.com/unitycoder/UnityPointCloudViewer/wiki/Binary-File-Format-Structure#custom-v3-tiles-pcroot-and-pct-rgb
22

33
using PointCloudConverter.Logger;
4-
using System;
5-
using System.Collections.Generic;
64
using System.IO;
7-
using System.Reflection.PortableExecutable;
85
using System.Text;
96
using System.Text.Json;
107

@@ -228,7 +225,7 @@ void IWriter.Save(int fileIndex)
228225
"\"folder\": " + JsonSerializer.Serialize(baseFolder) + "}";
229226

230227
// TODO combine 2 outputs.. only other one shows up now
231-
Log.WriteLine("Saving " + nodeX.Count + " tiles to folder: " + baseFolder);
228+
Log.WriteLine("Saving " + nodeX.Count + " tiles into: " + baseFolder);
232229
Log.WriteLine(jsonString, LogEvent.End);
233230

234231
Console.ForegroundColor = ConsoleColor.White;
@@ -799,7 +796,5 @@ void RGBtoHSV(float r, float g, float b, out float h, out float s, out float v)
799796
if (h < 0) h += 360;
800797
}
801798

802-
803-
804799
} // class
805800
} // namespace

0 commit comments

Comments
 (0)