Esempio n. 1
0
 public SurfaceAxes(Dlubal.RFEM5.SurfaceAxes axes)
 {
     SurfaceAxesDirection = axes.Direction;
     AxesLineList         = axes.LineList;
     Point1   = axes.Point1.ToPoint3d();
     Point2   = axes.Point2.ToPoint3d();
     Rotation = axes.Rotation;
     UserCSNo = axes.UserCSNo;
     SfcNo    = axes.No;
 }
Esempio n. 2
0
 public RFSurface(Dlubal.RFEM5.Surface surface, RFLine[] edges, RFOpening[] openings, Dlubal.RFEM5.SurfaceAxes axes) : this(surface, edges, openings)
 {
     SurfaceAxes = new SurfaceAxes(axes);
 }