-
Notifications
You must be signed in to change notification settings - Fork 505
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
8242523: Update the animation and clip envelope classes #196
8242523: Update the animation and clip envelope classes #196
Conversation
👋 Welcome back nlisker! A progress list of the required criteria for merging this PR into |
@nlisker this pull request can not be integrated into git checkout 8242523_Update_the_Animation_and_ClipEnvelope_classes
git fetch https://git.openjdk.java.net/jfx master
git merge FETCH_HEAD
# resolve conflicts and follow the instructions given by git merge
git commit -m "Merge master"
git push |
/reviewers 2 |
@kevinrushforth |
@arapte can you also review this? |
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.
Overall looks good to me, Added few minor comments.
...s/javafx.graphics/src/main/java/com/sun/scenario/animation/shared/MultiLoopClipEnvelope.java
Outdated
Show resolved
Hide resolved
modules/javafx.graphics/src/main/java/com/sun/scenario/animation/shared/ClipEnvelope.java
Show resolved
Hide resolved
...s/javafx.graphics/src/main/java/com/sun/scenario/animation/shared/MultiLoopClipEnvelope.java
Outdated
Show resolved
Hide resolved
.../javafx.graphics/src/main/java/com/sun/scenario/animation/shared/SingleLoopClipEnvelope.java
Show resolved
Hide resolved
...s/javafx.graphics/src/main/java/com/sun/scenario/animation/shared/MultiLoopClipEnvelope.java
Show resolved
Hide resolved
@kevinrushforth Do you have any other comments? |
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.
The code changes look fine except for one thing I noticed (see below), which might lead to an unintended side effect. Also, I had one suggestion for a javadoc comment block.
927136f
to
d0d8252
Compare
@nlisker This change now passes all automated pre-integration checks. When the change also fulfills all project specific requirements, type
Since the source branch of this PR was last updated there have been 5 commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid automatic rebasing, please merge ➡️ To integrate this PR with the above commit message to the |
/integrate |
@nlisker The following commits have been pushed to master since your change was applied:
Your commit was automatically rebased without conflicts. Pushed as commit a78b3fb. |
Mostly refactoring in preparation of the upcoming fixes. The changes might look like a lot, but it's mostly rearranging of methods. Summery of changes:
Animation
isNearZero
andareNearEqual
methods that deal withEPSILON
checks.isStopped
,isRunning
andisPaused
convenience methods.runHandler
method to deal with running the handler.TickCalculation
.autoReverse
andonFinished
properties from "Simple" to "Base" properties; and lazily initializing thecuePoints
map.Clip Envelopes
MultiLoopClipEnvelope
as an intermediate parent for infinite and finite clip envelopes.checkBounds
method with a new overload ofUtils.clamp
.pos
tocyclePos
.changedDirection
andticksRateChange
Also corrected a typo in
TicksCalculation
and added an explanation for an animation test.Progress
Issue
Reviewers
Download
$ git fetch https://git.openjdk.java.net/jfx pull/196/head:pull/196
$ git checkout pull/196