surface supports in grpc client arnt being added correctly
the begin situation
using Dlubal.Api.Common;
using Dlubal.Api.RFEM;
using Dlubal.Api.RFEM.StructureCore;
using Dlubal.Api.RFEM.TypesForSurfaces;
using Google.Protobuf;
namespace ConsoleApp6
{
public static class Program
{
public static async Task Main(string[] Args)
{
ApplicationRfem app = null;
app = new ApplicationRfem("API KEY HERE");
var s = new SurfaceSupport()
{
TranslationX = 3,
TranslationY = 3,
TranslationZ = 3,
ShearXz = 3,
ShearYz = 3,
};
s.Surfaces.Add(1);
await app.create_object(s);
await app.close_connection();
}
}
}
my code
what gets added when i run it after adding the surface support
To Reproduce
Steps to reproduce the behavior:
- Add 4 nodes on the canvas
- make lines between the notes
- add a surace to the lines
- in the c# grpc client add a surface support with the values not 0
- run the code
- surface support in RFEM shows 0 in the ui
- OS: e.g. Windows 11 24H2
- 6.12.6

