MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / set_outgoing_edge_points

Method set_outgoing_edge_points

python/flowgraph.py:337–342  ·  view source on GitHub ↗
(self, edge_num: int, points: List[Tuple[float, float]])

Source from the content-addressed store, hash-verified

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
345class FlowGraphLayoutRequest:

Callers 1

layoutMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected