Files
PointCloudWeb/PointCloudWeb.Server/Models/ScanData.cs
2021-07-11 10:14:43 +02:00

21 lines
476 B
C#

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; }
}
}