(self, x: int, y: int, w: int, h: int)
| 332 | return core.BNIsNodeValidForFlowGraph(graph.handle, self.handle) |
| 333 | |
| 334 | def set_visibility_region(self, x: int, y: int, w: int, h: int): |
| 335 | core.BNFlowGraphNodeSetVisibilityRegion(self.handle, x, y, w, h) |
| 336 | |
| 337 | def set_outgoing_edge_points(self, edge_num: int, points: List[Tuple[float, float]]): |
| 338 | point_buf = (core.BNPoint * len(points))() |