| 193 | |
| 194 | |
| 195 | QPointF |
| 196 | NodeConnectionInteraction:: |
| 197 | nodePortScenePosition(PortType portType, PortIndex portIndex) const |
| 198 | { |
| 199 | NodeGeometry const &geom = _node->nodeGeometry(); |
| 200 | |
| 201 | QPointF p = geom.portScenePosition(portIndex, portType); |
| 202 | |
| 203 | NodeGraphicsObject& ngo = _node->nodeGraphicsObject(); |
| 204 | |
| 205 | return ngo.sceneTransform().map(p); |
| 206 | } |
| 207 | |
| 208 | |
| 209 | PortIndex |
nothing calls this directly
no outgoing calls
no test coverage detected