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

Method get_viewpoints

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

Source from the content-addressed store, hash-verified

378 )
379
380 def get_viewpoints(self, project_id: str = "", topic_id: str = "") -> list[Any]:
381 return self.get(
382 f"/projects/{project_id}/topics/{topic_id}/viewpoints",
383 {
384 "project_id": project_id,
385 "topic_id": topic_id,
386 },
387 )
388
389 def create_viewpoints(self, project_id: str = "", topic_id: str = "", data: Any = None) -> tuple[int, str]:
390 return self.post(

Callers

nothing calls this directly

Calls 1

getMethod · 0.95

Tested by

no test coverage detected