Files
IfcOpenShell/src/ifcopenshell-python/ifcopenshell/api/alignment/create_as_polyline.py
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
2.4 KiB
Python
Raw Normal View History

2025-07-08 10:09:14 -07:00
# IfcOpenShell - IFC toolkit and geometry engine
# Copyright (C) 2025 Thomas Krijnen <thomas@aecgeeks.com>
#
# This file is part of IfcOpenShell.
#
# IfcOpenShell is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# IfcOpenShell is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with IfcOpenShell. If not, see <http://www.gnu.org/licenses/>.
import ifcopenshell
2025-07-10 11:30:09 +05:00
import ifcopenshell.api.aggregate
2025-07-08 10:09:14 -07:00
import ifcopenshell.api.alignment
2025-07-10 11:30:09 +05:00
import ifcopenshell.api.nest
import ifcopenshell.util.stationing
2025-07-08 10:09:14 -07:00
from ifcopenshell import entity_instance
from ifcopenshell.api.alignment._create_polyline_representation import _create_polyline_representation
2025-07-08 10:09:14 -07:00
from ifcopenshell.api.alignment._add_zero_length_segment import _add_zero_length_segment
from collections.abc import Sequence
2025-07-08 10:09:14 -07:00
def create_as_polyline(
2025-07-08 10:09:14 -07:00
file: ifcopenshell.file,
name: str,
points: Sequence[entity_instance],
2025-07-08 10:09:14 -07:00
start_station: float = 0.0,
) -> entity_instance:
"""
Creates a new IfcAlignment with an IfcPolyline representation.
2025-07-08 10:09:14 -07:00
The IfcAlignment is aggreated to IfcProject
:param file:
:param name: name assigned to IfcAlignment.Name
:param points: sequence of points defining the polyline
2025-07-08 10:09:14 -07:00
:param start_station: station value at the start of the alignment
:return: Returns an IfcAlignment
"""
alignment = file.createIfcAlignment(
GlobalId=ifcopenshell.guid.new(),
Name=name,
)
_create_polyline_representation(file, alignment, points)
2025-07-08 10:09:14 -07:00
# define stationing
name = ifcopenshell.util.stationing.station_as_string(file, start_station)
referent = ifcopenshell.api.alignment.add_stationing_referent(
file, alignment, 0.0, start_station, name
2025-07-08 10:09:14 -07:00
)
ifcopenshell.api.nest.reorder_nesting(file, referent, -1, 0)
# IFC 4.1.4.1.1 Alignment Aggregation To Project
project = file.by_type("IfcProject")[0]
if project:
ifcopenshell.api.aggregate.assign_object(file, products=[alignment], relating_object=project)
return alignment