
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Maruthi Krishna has Published 870 Articles

Maruthi Krishna
214 Views
A line is a geometrical structure that joins two points on an XY plane.In JavaFX a line is represented by the javafx.scene.shape.Line class. This class contains four properties they are −startX − This property represents the x coordinate of the starting point of the line, you can set the value to ... Read More

Maruthi Krishna
959 Views
A Rectangle is a closed a polygon with four edges, the angle between any two edges is a right angle and the opposite sides are concurrent. It is defined by its height and width, the lengths of the vertical and horizontal sides respectively.In JavaFX a Rectangle is represented by the ... Read More

Maruthi Krishna
807 Views
A circle is a line forming a closed loop, every point on which is a fixed distance from a center point. A circle is defined by its center and radius − distance from the center to any point on the circle.In JavaFX a circle is represented by the javafx.scene.shape.Circle class. This ... Read More

Maruthi Krishna
592 Views
If the stroke used is a dashing pattern. the strokeDashOffset property specifies the offset into the dashing pattern. i.e. the dash phase defines the point in the dashing pattern that will correspond to the beginning of the stroke.Exampleimport javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.paint.Color; import javafx.scene.shape.Line; import javafx.scene.shape.Polygon; import ... Read More

Maruthi Krishna
311 Views
The smooth property specifies whether antialiasing hints are used or not. You can set the value to this property using the setSmooth() method of the javafx.scene.shape.Shape class.This method accepts a boolean value and if you pass true the edges of the shape will be smoothened.Exampleimport javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; ... Read More

Maruthi Krishna
468 Views
The Stroke Line Cap specifies/defines the end cap style of the line. You can set the Stroke Line Cap value using the setStrokeLineCap() method of the javafx.scene.shape.Shape class.Java FX supports three kinds of stroke line caps represented by three constants of the Enum named StrokeLineCap they are −BUTT − This ... Read More

Maruthi Krishna
294 Views
The Stroke Miter Limit property specifies/defines the limit for the stroke line join in the StrokeLineJoin.MITER style. You can set this value using the setStrokeMiterLimit() method of the javafx.scene.shape.Shape class.This method accepts a double value and limits the stroke miter limit to the given value. If the given value is ... Read More

Maruthi Krishna
371 Views
In shapes formed by joining more than one line, the stroke line join property specifies/defines the shape of the joint of the two lines. You can set the stoke line join using the setStrokeLineJoin() method.Java FX supports three kinds of stroke line joins represented by three constants of the Enum ... Read More

Maruthi Krishna
1K+ Views
The stroke property specifies/defines the color of the boundary of a shape. You can set the color of the boundary using the setStroke() method of the javafx.scene.shape.Shape class.This method accepts a Color value as a parameter and sets the given color to the boundary of a shape.By default, the value ... Read More

Maruthi Krishna
842 Views
The fill property specifies/defines the color with which the interior area of the shape is to be filled. You can fill a particular shape with the desired color using the fill() method of the javafx.scene.shape.Shape class.By default, the value of this property for the shapes (objects) line, path and polyline ... Read More