/
spruttechnology
/
cam-api-examples
Обзор
Документация
Войти
/
spruttechnology
/
cam-api-examples
Код
Запросы
3
Задачи
Пакеты
0
Релизы
1
Аналитика
v19/develop
FullWorkflow/PartCalibrationWorkflowNet/project/main/Model/Point3D.cs
16 строк
498 B
renal
Новые примеры CAMAPI
22 июн 2026, 15:53
22 июн 2026, 15:53
a5f6d2b
Код
Авторство
О чём код?
namespace PartCalibrationWorkflowNet.Model; /// <summary> /// Plain serializable 3D point with optional surface normal. Used by the /// imported-points parsers and the deviation-calculation pipeline. /// </summary> public sealed class Point3D { public string Name { get; set; } = ""; public double X { get; set; } public double Y { get; set; } public double Z { get; set; } public double Nx { get; set; } public double Ny { get; set; } public double Nz { get; set; } }