(self, edge_num: int, points: List[Tuple[float, float]])
| 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))() |
| 339 | for i in range(0, len(points)): |
| 340 | point_buf[i].x = points[i][0] |
| 341 | point_buf[i].y = points[i][1] |
| 342 | core.BNFlowGraphNodeSetOutgoingEdgePoints(self.handle, edge_num, point_buf, len(points)) |
| 343 | |
| 344 | |
| 345 | class FlowGraphLayoutRequest: |