Files
speckle-sharp-host-apis/Speckle.Revit2023.Fakes/generated/Autodesk.Revit.DB.Analysis.BuildingEnvelopeAnalyzer.s.cs
T
Adam Hathcock 1b31dc18e8 Generate empty constructors for testing (#27)
* fixes

* Generate empty constructors for testing
2024-07-01 14:58:01 +00:00

30 lines
1.1 KiB
C#

namespace Autodesk.Revit.DB.Analysis;
public partial class BuildingEnvelopeAnalyzer : System.IDisposable
{
public BuildingEnvelopeAnalyzer() { }
public static Autodesk.Revit.DB.Analysis.BuildingEnvelopeAnalyzer Create(
Autodesk.Revit.DB.Document document,
Autodesk.Revit.DB.Analysis.BuildingEnvelopeAnalyzerOptions options
) => throw new System.NotImplementedException();
public virtual System.Collections.Generic.IList<Autodesk.Revit.DB.LinkElementId> GetBoundingElements() =>
throw new System.NotImplementedException();
public virtual System.Collections.Generic.IList<Autodesk.Revit.DB.LinkElementId> GetBoundingElementsForSpaceVolume(
System.Int32 spaceVolume
) => throw new System.NotImplementedException();
public virtual System.Collections.Generic.IList<Autodesk.Revit.DB.XYZ> GetCenterPointsForConnectedGridCellsInSpaceVolume(
System.Int32 spaceVolume
) => throw new System.NotImplementedException();
public virtual void Dispose() => throw new System.NotImplementedException();
public virtual System.Boolean IsValidObject
{
get => throw new System.NotImplementedException();
}
}