You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: MainWindow.xaml
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,10 @@
41
41
<CheckBoxx:Name="chkImportRGB"Content="Read RGB"HorizontalAlignment="Left"VerticalAlignment="Top"Foreground="{DynamicResource MainText}"IsChecked="True"ToolTip="Reads RGB color values"Checked="chkImportRGB_Checked"Unchecked="chkImportRGB_Unchecked"/>
42
42
<CheckBoxx:Name="chkImportIntensity"Content="Read Intensity"HorizontalAlignment="Left"VerticalAlignment="Top"Foreground="{DynamicResource MainText}"IsChecked="False"ToolTip="Reads Intensity as Color value"Checked="chkImportIntensity_Checked"Unchecked="chkImportIntensity_Unchecked"/>
43
43
</StackPanel>
44
-
<CheckBoxx:Name="chkAutoOffset"Content="Auto-Offset"HorizontalAlignment="Left"VerticalAlignment="Top"Foreground="{DynamicResource MainText}"IsChecked="True"ToolTip="Auto-offsets cloud near 0,0,0 by using bounds min. as offset"Checked="chkAutoOffset_Checked"/>
44
+
<StackPanelOrientation="Horizontal">
45
+
<CheckBoxx:Name="chkAutoOffset"Content="Auto-Offset, mode:"HorizontalAlignment="Left"VerticalAlignment="Top"Foreground="{DynamicResource MainText}"IsChecked="True"ToolTip="Auto-offsets cloud near 0,0,0 by using bounds min. as offset"Checked="chkAutoOffset_Checked"/>
46
+
<TextBoxx:Name="txtOffsetMode"HorizontalAlignment="Left"Margin="0"TextWrapping="Wrap"VerticalAlignment="Top"Width="45"Text="min"MaxLines="1"ToolTip="Legacy=first cloud min bounds, Min=All clouds min bounds" />
47
+
</StackPanel>
45
48
<StackPanelOrientation="Vertical">
46
49
<CheckBoxx:Name="chkManualOffset"Content="Manual Offset"HorizontalAlignment="Left"VerticalAlignment="Top"Foreground="{DynamicResource MainText}"IsChecked="True"ToolTip="Add offset to all points (After Auto-Offset and Flip, if those are enabled)"Checked="chkManualOffset_Checked"/>
Console.WriteLine("-metadataonly"+argSeparator+"false\t\tRead metadata only (dont process points)\tDefault is false");
297
297
Console.WriteLine("-averagetimestamp"+argSeparator+"false\t\tGet Average timestamp per Tile\tDefault is false");
298
298
Console.WriteLine("-checkoverlap"+argSeparator+"false\t\tCalculate overlapping tiles\tDefault is false");
299
+
Console.WriteLine("-offsetmode"+argSeparator+"min\t\tGet auto-offset bounds, min=min from all bounds, legacy= first cloud min bounds\tDefault is min");
0 commit comments