Files
speckle-sharp-host-apis/Speckle.Rhino7.Fakes/generated/Rhino.FileIO.File3dmInstanceDefinitionTable.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

55 lines
2.0 KiB
C#

namespace Rhino.FileIO;
public partial class File3dmInstanceDefinitionTable
: Rhino.FileIO.File3dmCommonComponentTable<Rhino.Geometry.InstanceDefinitionGeometry>
{
public File3dmInstanceDefinitionTable() { }
public virtual Rhino.Geometry.InstanceDefinitionGeometry FindName(System.String name) =>
throw new System.NotImplementedException();
public virtual Rhino.Geometry.InstanceDefinitionGeometry FindNameHash(Rhino.FileIO.NameHash nameHash) =>
throw new System.NotImplementedException();
public virtual System.Int32 Add(
System.String name,
System.String description,
System.String url,
System.String urlTag,
Rhino.Geometry.Point3d basePoint,
System.Collections.Generic.IEnumerable<Rhino.Geometry.GeometryBase> geometry,
System.Collections.Generic.IEnumerable<Rhino.DocObjects.ObjectAttributes> attributes
) => throw new System.NotImplementedException();
public virtual System.Int32 Add(
System.String name,
System.String description,
Rhino.Geometry.Point3d basePoint,
System.Collections.Generic.IEnumerable<Rhino.Geometry.GeometryBase> geometry,
System.Collections.Generic.IEnumerable<Rhino.DocObjects.ObjectAttributes> attributes
) => throw new System.NotImplementedException();
public virtual System.Int32 Add(
System.String name,
System.String description,
Rhino.Geometry.Point3d basePoint,
System.Collections.Generic.IEnumerable<Rhino.Geometry.GeometryBase> geometry
) => throw new System.NotImplementedException();
public virtual System.Int32 Add(
System.String name,
System.String description,
Rhino.Geometry.Point3d basePoint,
Rhino.Geometry.GeometryBase geometry,
Rhino.DocObjects.ObjectAttributes attributes
) => throw new System.NotImplementedException();
public virtual System.Int32 AddLinked(System.String filename, System.String name, System.String description) =>
throw new System.NotImplementedException();
public override Rhino.DocObjects.ModelComponentType ComponentType
{
get => throw new System.NotImplementedException();
}
}