Logic for interaction diagram was added

This commit is contained in:
Evgeny Redikultsev
2023-12-09 22:05:02 +05:00
parent f46c0dd814
commit e6a9322a36
30 changed files with 643 additions and 106 deletions

View File

@@ -0,0 +1,31 @@
using StructureHelperCommon.Infrastructures.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//Copyright (c) 2023 Redikultsev Evgeny, Ekaterinburg, Russia
//All rights reserved.
namespace StructureHelperCommon.Models.Shapes
{
/// <summary>
/// Interface for geometry point in 3D space
/// </summary>
public interface IPoint3D : ISaveable, ICloneable
{
/// <summary>
/// Coordinate along X-axis
/// </summary>
double X { get; set; }
/// <summary>
/// Coordinate along Y-axis
/// </summary>
double Y { get; set; }
/// <summary>
/// Coordinate along Z-axis
/// </summary>
double Z { get; set; }
}
}