mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-19 19:54:07 +00:00
7 lines
157 B
Python
7 lines
157 B
Python
|
|
class Usecase:
|
||
|
|
def __init__(self, file):
|
||
|
|
self.file = file
|
||
|
|
|
||
|
|
def execute(self):
|
||
|
|
self.file.createIfcPerson("HSeldon", "Seldon", "Hari")
|