Add ScanData Controller
This commit is contained in:
21
PointCloudWeb.Server/Models/ScanData.cs
Normal file
21
PointCloudWeb.Server/Models/ScanData.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user