Skip to content

Commit 88361f7

Browse files
committed
fix getintensity method return value #BUILD
1 parent 6746f40 commit 88361f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

MainWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace PointCloudConverter
3030
{
3131
public partial class MainWindow : Window
3232
{
33-
static readonly string version = "04.05.2025";
33+
static readonly string version = "18.05.2025";
3434
static readonly string appname = "PointCloud Converter - " + version;
3535
static readonly string rootFolder = AppDomain.CurrentDomain.BaseDirectory;
3636

Readers/E57.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public Color GetRGB()
154154
return default;
155155
}
156156

157-
public byte GetIntensity()
157+
public ushort GetIntensity()
158158
{
159159
var i = currentPointIndex - 1;
160160
if (currentChunk?.Intensities != null && i >= 0 && i < currentChunk.Intensities.Length)

0 commit comments

Comments
 (0)