Skip to content
This repository has been archived by the owner on Jan 12, 2020. It is now read-only.
/ javafx_circle Public archive

Project to generate a circle of given javafx-elements.

Notifications You must be signed in to change notification settings

JkbLskw/javafx_circle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JavaFX Circle

Project to generate a circle of given javafx-elements.

Usage (e.g. list of labels)

import controller.CircleController;

...

Pane circlePane = new Pane();
int circleRadius = 250;

CircleController<Label> circleController = new CircleController<Label>(labelList, circlePane, circleRadius);

circleController.setElementMouseEvent(MouseEvent.MOUSE_CLICKED);
circleController.setElementSelectable(Selectable.NONE);
circleController.setElementRotatable(true);
circleController.setElementReadable(true);
circleController.buildElements();

About

Project to generate a circle of given javafx-elements.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages