3b6623e51a
* 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
13 lines
356 B
C#
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
|
|
);
|