Add ScanData Controller

This commit is contained in:
Tim Wundenberg
2021-07-11 10:14:43 +02:00
parent 0cf75695b4
commit f8e2e08886
8 changed files with 260 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
namespace PointCloudWeb.Server.Models
{
public class ScanDataPoint
{
//RotationAngle on {Y,Z,X} Axis
public double RAY { get; set; }
public double RAZ { get; set; }
public double RAX { get; set; }
public double DistanceMM { get; set; }
}
public class ScanDataList
{
public Guid Id { get; set; }
public IList<ScanDataPoint> List { get; set; }
}
}