Represents a quantity set containing element quantities. Quantity sets define measurable quantities for building elements (e.g., area, volume, length).
const quantitySet: T8QuantitySet<T8Unit> = { name: "Qto_WallBaseQuantities", quantities: { "Length": { value: 5.0, type: "IfcLengthMeasure", unit: meters }, "Area": { value: 15.0, type: "IfcAreaMeasure", unit: squareMeters } }}; Copy
const quantitySet: T8QuantitySet<T8Unit> = { name: "Qto_WallBaseQuantities", quantities: { "Length": { value: 5.0, type: "IfcLengthMeasure", unit: meters }, "Area": { value: 15.0, type: "IfcAreaMeasure", unit: squareMeters } }};
The type used to represent units of measurement
The name of the quantity set
Collection of quantities in this set, keyed by quantity name
Represents a quantity set containing element quantities. Quantity sets define measurable quantities for building elements (e.g., area, volume, length).
Example