Files
speckle-sharp-host-apis/Speckle.Rhino7.Fakes/generated/Rhino.FileIO.FileSlcWriteOptions.s.cs
T
Adam Hathcock fb415d0416
.NET Build and Publish / build (push) Has been cancelled
Fix rhino7 fileio (#34)
* fix issue with basetype being null

* add Rhino.FileIO properly

* update csharpier
2024-10-10 10:13:02 +01:00

33 lines
727 B
C#

namespace Rhino.FileIO;
public partial class FileSlcWriteOptions
{
public FileSlcWriteOptions() { }
public virtual Rhino.Geometry.Point3d StartPoint
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Rhino.Geometry.Point3d EndPoint
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double SliceDistance
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean UseMeshes
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double AngleBetweenSegmentsDegrees
{
get => throw new System.NotImplementedException();
set { }
}
}