Add 3d Viewer

This commit is contained in:
Evgeny Redikultsev
2025-11-30 17:34:04 +05:00
parent f381229a63
commit 96e7e9a587
20 changed files with 541 additions and 12 deletions

View File

@@ -12,5 +12,8 @@ namespace FieldVisualizer.Entities.Values.Primitives
IPoint2D Point1 { get; set; }
IPoint2D Point2 { get; set; }
IPoint2D Point3 { get; set; }
double ValuePoint1 { get; set; }
double ValuePoint2 { get; set; }
double ValuePoint3 { get; set; }
}
}

View File

@@ -23,5 +23,9 @@ namespace FieldVisualizer.Entities.Values.Primitives
(Point2.X - Point1.X) * (Point3.Y - Point1.Y) -
(Point3.X - Point1.X) * (Point2.Y - Point1.Y)
);
public double ValuePoint1 { get; set; }
public double ValuePoint2 { get; set; }
public double ValuePoint3 { get; set; }
}
}