Skip to content

Commit 4dcfe9d

Browse files
committed
fix date string #BUILD
1 parent 60d40da commit 4dcfe9d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

MainWindow.xaml.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ namespace PointCloudConverter
2626
{
2727
public partial class MainWindow : Window
2828
{
29-
static readonly string version = "24.02.2024";
29+
static readonly string version = "09.03.2024";
3030
static readonly string appname = "PointCloud Converter - " + version;
3131
static readonly string rootFolder = AppDomain.CurrentDomain.BaseDirectory;
3232

@@ -271,8 +271,9 @@ static void ParseFile(ImportSettings importSettings, int fileIndex)
271271
// offset cloud to be near 0,0,0
272272
importSettings.offsetX = bounds.minX;
273273
importSettings.offsetY = bounds.minY;
274+
//importSettings.offsetZ = bounds.minZ;
274275
}
275-
// NOW smallest Y offset and largest X,Z is used (to fix INT packing negative value issue)
276+
// NOW smallest Y offset and largest X,Z is used (to fix INT packing negative value issue) TODO this can create more tile than old, so need to check if this is ok
276277
if (bounds.minZ < importSettings.offsetZ)
277278
{
278279
importSettings.offsetZ = bounds.minZ;

0 commit comments

Comments
 (0)