MCPcopy Create free account
hub / github.com/IfcOpenShell/IfcOpenShell / get_bitmap

Method get_bitmap

src/bcf/bcf/v3/bcfapi.py:425–434  ·  view source on GitHub ↗
(self, project_id: str = "", topic_id: str = "", viewpoint_id: str = "", bitmap_id: str = "")

Source from the content-addressed store, hash-verified

423 )
424
425 def get_bitmap(self, project_id: str = "", topic_id: str = "", viewpoint_id: str = "", bitmap_id: str = "") -> str:
426 return self.get(
427 f"/projects/{project_id}/topics/{topic_id}/viewpoints/{viewpoint_id}/bitmaps/{bitmap_id}",
428 {
429 "project_id": project_id,
430 "topic_id": topic_id,
431 "viewpoint_id": viewpoint_id,
432 "bitmap_id": bitmap_id,
433 },
434 )
435
436 def get_selection(self, project_id: str = "", topic_id: str = "", viewpoint_id: str = "") -> dict[str, Any]:
437 return self.get(

Callers

nothing calls this directly

Calls 1

getMethod · 0.95

Tested by

no test coverage detected