Files
speckle-sharp-connectors/Converters/Revit/Speckle.Converters.RevitShared/Settings/RevitConversionSettings.cs
T
Björn Steinhagen 3b6623e51a feat(revit): rebar displayValue options on send (#821)
* feat: add send rebars as solid toggle

* feat: rebar `displayValue` default of centrelines

* feat: sending rebars as solid poc

- need to refactor to avoid duplicate code
- is this the best way? what if user view isn't fine?

* refactor: extract common code and code comments

* refactor: reduce code duplication in DisplayValueExtractor with record

* refactor: wording volumetric not solid
2025-05-12 20:16:23 +02:00

13 lines
356 B
C#

namespace Speckle.Converters.RevitShared.Settings;
public record RevitConversionSettings(
DB.Document Document,
DetailLevelType DetailLevel,
DB.Transform? ReferencePointTransform,
string SpeckleUnits,
bool SendParameterNullOrEmptyStrings,
bool SendLinkedModels,
bool SendRebarsAsVolumetric,
double Tolerance = 0.0164042 // 5mm in ft
);