-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replaced usage of Ray with Vector #21 #584
Conversation
cd72285
to
9524836
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm a little bit concerned about the Vector introducing inaccuracies due to fractions, but I couldn't see anything wrong while testing. So I think it's fine to simply swap.
org.eclipse.draw2d/src/org/eclipse/draw2d/ManhattanConnectionRouter.java
Outdated
Show resolved
Hide resolved
org.eclipse.draw2d/src/org/eclipse/draw2d/ManhattanConnectionRouter.java
Outdated
Show resolved
Hide resolved
org.eclipse.draw2d/src/org/eclipse/draw2d/ManhattanConnectionRouter.java
Outdated
Show resolved
Hide resolved
org.eclipse.draw2d/src/org/eclipse/draw2d/ManhattanConnectionRouter.java
Outdated
Show resolved
Hide resolved
org.eclipse.draw2d/src/org/eclipse/draw2d/ManhattanConnectionRouter.java
Outdated
Show resolved
Hide resolved
org.eclipse.draw2d/src/org/eclipse/draw2d/ManhattanConnectionRouter.java
Outdated
Show resolved
Hide resolved
org.eclipse.draw2d/src/org/eclipse/draw2d/ManhattanConnectionRouter.java
Outdated
Show resolved
Hide resolved
org.eclipse.draw2d/src/org/eclipse/draw2d/ManhattanConnectionRouter.java
Outdated
Show resolved
Hide resolved
org.eclipse.draw2d/src/org/eclipse/draw2d/ManhattanConnectionRouter.java
Outdated
Show resolved
Hide resolved
Draw2d's Ray class is deprecated. This commit removes all its usage and replaces it with the Vector class. To make migration easier two new constructors where added to Vector. Addresses eclipse-gef#21
It seems Eclipse Jenkins has issues accessing maven central again. |
I think this issue lies with https://www.eclipsestatus.io/incident/422280
Hopefully, the repo was only briefly unavailable and the job will finish now. |
Draw2d's Ray class is deprecated. This commit removes all its usage and replaces it with the Vector class. To make migration easier two new constructors where added to Vector.
Addresses #21