Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- new Stage() {{
- title = "Group-Nodes-Transformation";
- scene = new Scene() {{
- width = 600;
- height = 600;
- content = new Group() {{
- content = new Object[] = {
- new Circle() {{
- centerX = 300;
- centerY = 300;
- radius = 250;
- fill = Color.WHITE;
- stroke = Color.BLACK;
- }},
- new Text() {{
- x = 300;
- y = 300;
- content = "Mr. Duke";
- }},
- new ImageView() {{
- image = new Image() {{
- url = "D:\\TEST\\Documents\\duke.png"
- width = 50;
- height = 50;
- }};
- }};
- };
- }};
- }};
- }};
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement