Created
October 12, 2017 15:15
-
-
Save grkvlt/f58fdd97da764e282e379f1e9dff047c to your computer and use it in GitHub Desktop.
Exploring Iterated Function Systems
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AffineTransform getTransform(); | |
default Point2D apply(Point2D src) { | |
return getTransform().transform(src, null); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment