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
import javafx.scene.paint.Color; | |
import javafx.scene.shape.SVGPath; | |
/** | |
* @author isokissa | |
*/ | |
public class IsokissaLogo extends SVGPath { | |
public IsokissaLogo(){ |
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
static IntStream revRange(int from, int to) { | |
return IntStream.range(from, to).map(i -> to - i + from - 1); | |
} |