Package org.eclipse.gef.fx.nodes
Interface IConnectionInterpolator
-
- All Known Implementing Classes:
AbstractInterpolator
,PolyBezierInterpolator
,PolylineInterpolator
public interface IConnectionInterpolator
AnIConnectionInterpolator
is responsible for updating theConnection
'scurve node
(which includes to properly clip it at the start and end decorations), as well as for arranging the decorations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
interpolate(Connection connection)
Interpolates the givenConnection
, i.e updates itscurve node
to reflect a respective geometry.
-
-
-
Method Detail
-
interpolate
void interpolate(Connection connection)
Interpolates the givenConnection
, i.e updates itscurve node
to reflect a respective geometry. TheIConnectionInterpolator
is also responsible of arranging the connection'sstart
andend
decorations (and has to ensure the curve node is properly clipped to not render through the decorations).- Parameters:
connection
- TheConnection
to interpolate.
-
-