remove ScaleFactor

This commit is contained in:
Tim Wundenberg
2021-07-16 22:50:07 +02:00
parent 4809964d3d
commit 5bf8228628

View File

@@ -42,12 +42,6 @@ namespace PointCloudWeb.Server.Models
public string Name { get; set; }
public IList<Point> Points { get; private set; }
/// <summary>
/// Function <c>ScaleFactor</c> defines relation between X/Y/Z distances in mm
/// So, Point A(0,0,0) is 1mm from B(1,0,0) apart
/// </summary>
public static int ScaleFactor() => 1;
public PointCloud(String name, Guid id)
{
Points = new List<Point>();