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
{
///
/// Interface for geometry point in 3D space
///
public interface IPoint3D : ISaveable, ICloneable
{
///
/// Coordinate along X-axis
///
double X { get; set; }
///
/// Coordinate along Y-axis
///
double Y { get; set; }
///
/// Coordinate along Z-axis
///
double Z { get; set; }
}
}