fb415d0416
.NET Build and Publish / build (push) Has been cancelled
* fix issue with basetype being null * add Rhino.FileIO properly * update csharpier
23 lines
474 B
C#
23 lines
474 B
C#
namespace Rhino.FileIO;
|
|
|
|
public partial class FileStpWriteOptions
|
|
{
|
|
public FileStpWriteOptions() { }
|
|
|
|
public virtual System.Boolean Export2dCurves
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual System.Boolean ExportBlack
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual System.Boolean SplitClosedSurfaces
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
}
|