Files
speckle-sharp-host-apis/Speckle.Rhino7.Fakes/generated/Rhino.FileIO.File3dmObject.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
1.0 KiB
C#

namespace Rhino.FileIO;
public partial class File3dmObject : Rhino.DocObjects.ModelComponent, System.IEquatable<Rhino.FileIO.File3dmObject>
{
public File3dmObject() { }
public virtual System.Boolean Equals(Rhino.FileIO.File3dmObject other) => throw new System.NotImplementedException();
public virtual System.Boolean TryReadUserData(
System.Guid userDataId,
System.Boolean readFromAttributes,
System.Func<Rhino.FileIO.File3dm, Rhino.FileIO.BinaryArchiveReader, System.Boolean> dataReader
) => throw new System.NotImplementedException();
public virtual Rhino.Geometry.GeometryBase Geometry
{
get => throw new System.NotImplementedException();
}
public virtual Rhino.DocObjects.ObjectAttributes Attributes
{
get => throw new System.NotImplementedException();
}
public new System.String Name
{
get => throw new System.NotImplementedException();
set { }
}
public new Rhino.DocObjects.ModelComponentType ComponentType
{
get => throw new System.NotImplementedException();
}
}