Ignore:
Timestamp:
09/18/18 12:02:44 (6 years ago)
Author:
bln4
Message:

Used Eclipse refactoring to encapsulate Point.X and Point.Y

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/gio/javafx/JavaFXConversions.java

    r1097 r1144  
    4343                CycleMethod cyclic = fill.isAcyclic() ? CycleMethod.NO_CYCLE : CycleMethod.REFLECT;
    4444                return new javafx.scene.paint.LinearGradient(
    45                                         fill.getFromPoint().x,
    46                                         fill.getFromPoint().y,
    47                                         fill.getToPoint().x,
    48                                         fill.getToPoint().y,
     45                                        fill.getFromPoint().getX(),
     46                                        fill.getFromPoint().getY(),
     47                                        fill.getToPoint().getX(),
     48                                        fill.getToPoint().getY(),
    4949                                        false,
    5050                                        cyclic,
Note: See TracChangeset for help on using the changeset viewer.