ifcopenshell.api.profile.add_arbitrary_profile
¶
Module Contents¶
- ifcopenshell.api.profile.add_arbitrary_profile.add_arbitrary_profile(file: ifcopenshell.file, profile: list[tuple[float, float]], name: str | None = None) ifcopenshell.entity_instance ¶
Adds a new arbitrary polyline-based profile
The profile is represented as a polyline defined by a list of coordinates. Only straight segments are allowed. Coordinates must be provided in SI meters.
To represent a closed curve, the first and last coordinate must be identical.
- Parameters:
profile (list[tuple[float, float]]) – A list of coordinates
name (str, optional) – If the profile is semantically significant (i.e. to be managed and reused by the user) then it must be named. Otherwise, this may be left as none.
- Returns:
The newly created IfcArbitraryClosedProfileDef
- Return type:
ifcopenshell.entity_instance
Example:
# A 10mm by 100mm rectangle, such that might be used as a wooden # skirting board or kick plate. square = ifcopenshell.api.profile.add_arbitrary_profile(model, profile=[(0., 0.), (.01, 0.), (.01, .1), (0., .1), (0., 0.)], name="SK01 Profile")