Add beam shear classes

This commit is contained in:
Evgeny Redikultsev
2025-02-08 22:13:50 +05:00
parent 57bc6141c9
commit 91ccebf147
33 changed files with 1002 additions and 449 deletions

View File

@@ -0,0 +1,34 @@
using StructureHelperCommon.Models.Analyses;
using StructureHelperLogics.Models.BeamShears;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media;
namespace StructureHelperLogics.Models.Analyses
{
public class BeamShearAnalysis : IBeamShearAnalysis
{
public Guid Id { get; }
public string Name { get; set; } = string.Empty;
public string Tags { get; set; } = string.Empty;
public string Comment { get; set; } = string.Empty;
public Color Color { get; set; } = Color.FromRgb(128, 0, 0);
public IVersionProcessor VersionProcessor { get; set; } = new VersionProcessor();
public BeamShearAnalysis(Guid id)
{
Id = id;
BeamShear beamShear = new(Guid.NewGuid());
VersionProcessor.AddVersion(beamShear);
}
public object Clone()
{
throw new NotImplementedException();
}
}
}