Class Line2D.Float
java.lang.Object
java.awt.geom.Line2D
java.awt.geom.Line2D.Float
- All Implemented Interfaces:
Shape, Serializable, Cloneable
- Enclosing class:
Line2D
A line segment specified with float coordinates.
- Since:
- 1.2
- See Also:
-
Nested Class Summary
Nested classes/interfaces declared in class Line2D
Line2D.Double, Line2D.FloatModifier and TypeClassDescriptionstatic classA line segment specified with double coordinates.static classA line segment specified with float coordinates. -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns a high precision and more accurate bounding box of theShapethan thegetBoundsmethod.getP1()Returns the startPoint2Dof thisLine2D.getP2()Returns the endPoint2Dof thisLine2D.doublegetX1()Returns the X coordinate of the start point in double precision.doublegetX2()Returns the X coordinate of the end point in double precision.doublegetY1()Returns the Y coordinate of the start point in double precision.doublegetY2()Returns the Y coordinate of the end point in double precision.voidsetLine(double x1, double y1, double x2, double y2) Sets the location of the end points of thisLine2Dto the specified double coordinates.voidsetLine(float x1, float y1, float x2, float y2) Sets the location of the end points of thisLine2Dto the specified float coordinates.Methods declared in class Line2D
clone, contains, contains, contains, contains, getBounds, getPathIterator, getPathIterator, intersects, intersects, intersectsLine, intersectsLine, linesIntersect, ptLineDist, ptLineDist, ptLineDist, ptLineDistSq, ptLineDistSq, ptLineDistSq, ptSegDist, ptSegDist, ptSegDist, ptSegDistSq, ptSegDistSq, ptSegDistSq, relativeCCW, relativeCCW, relativeCCW, setLine, setLineModifier and TypeMethodDescriptionclone()Creates a new object of the same class as this object.booleancontains(double x, double y) Tests if a specified coordinate is inside the boundary of thisLine2D.booleancontains(double x, double y, double w, double h) Tests if the interior of thisLine2Dentirely contains the specified set of rectangular coordinates.booleanTests if a givenPoint2Dis inside the boundary of thisLine2D.booleanTests if the interior of thisLine2Dentirely contains the specifiedRectangle2D.Returns an integerRectanglethat completely encloses theShape.Returns an iteration object that defines the boundary of thisLine2D.getPathIterator(AffineTransform at, double flatness) Returns an iteration object that defines the boundary of this flattenedLine2D.booleanintersects(double x, double y, double w, double h) Tests if the interior of theShapeintersects the interior of a specified rectangular area.booleanTests if the interior of theShapeintersects the interior of a specifiedRectangle2D.booleanintersectsLine(double x1, double y1, double x2, double y2) Tests if the line segment from(x1,y1)to(x2,y2)intersects this line segment.booleanTests if the specified line segment intersects this line segment.static booleanlinesIntersect(double x1, double y1, double x2, double y2, double x3, double y3, double x4, double y4) Tests if the line segment from(x1,y1)to(x2,y2)intersects the line segment from(x3,y3)to(x4,y4).doubleptLineDist(double px, double py) Returns the distance from a point to this line.static doubleptLineDist(double x1, double y1, double x2, double y2, double px, double py) Returns the distance from a point to a line.doubleptLineDist(Point2D pt) Returns the distance from aPoint2Dto this line.doubleptLineDistSq(double px, double py) Returns the square of the distance from a point to this line.static doubleptLineDistSq(double x1, double y1, double x2, double y2, double px, double py) Returns the square of the distance from a point to a line.doubleptLineDistSq(Point2D pt) Returns the square of the distance from a specifiedPoint2Dto this line.doubleptSegDist(double px, double py) Returns the distance from a point to this line segment.static doubleptSegDist(double x1, double y1, double x2, double y2, double px, double py) Returns the distance from a point to a line segment.doubleReturns the distance from aPoint2Dto this line segment.doubleptSegDistSq(double px, double py) Returns the square of the distance from a point to this line segment.static doubleptSegDistSq(double x1, double y1, double x2, double y2, double px, double py) Returns the square of the distance from a point to a line segment.doubleptSegDistSq(Point2D pt) Returns the square of the distance from aPoint2Dto this line segment.intrelativeCCW(double px, double py) Returns an indicator of where the specified point(px,py)lies with respect to this line segment.static intrelativeCCW(double x1, double y1, double x2, double y2, double px, double py) Returns an indicator of where the specified point(px,py)lies with respect to the line segment from(x1,y1)to(x2,y2).intReturns an indicator of where the specifiedPoint2Dlies with respect to this line segment.voidSets the location of the end points of thisLine2Dto the same as those end points of the specifiedLine2D.voidSets the location of the end points of thisLine2Dto the specifiedPoint2Dcoordinates.Methods declared in class Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionbooleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Field Details
-
x1
public float x1The X coordinate of the start point of the line segment.- Since:
- 1.2
-
y1
public float y1The Y coordinate of the start point of the line segment.- Since:
- 1.2
-
x2
public float x2The X coordinate of the end point of the line segment.- Since:
- 1.2
-
y2
public float y2The Y coordinate of the end point of the line segment.- Since:
- 1.2
-
-
Constructor Details
-
Float
public Float()Constructs and initializes a Line with coordinates (0, 0) → (0, 0).- Since:
- 1.2
-
Float
public Float(float x1, float y1, float x2, float y2) Constructs and initializes a Line from the specified coordinates.- Parameters:
x1- the X coordinate of the start pointy1- the Y coordinate of the start pointx2- the X coordinate of the end pointy2- the Y coordinate of the end point- Since:
- 1.2
-
Float
-
-
Method Details
-
getX1
-
getY1
-
getP1
-
getX2
-
getY2
-
getP2
-
setLine
public void setLine(double x1, double y1, double x2, double y2) Sets the location of the end points of thisLine2Dto the specified double coordinates. -
setLine
public void setLine(float x1, float y1, float x2, float y2) Sets the location of the end points of thisLine2Dto the specified float coordinates.- Parameters:
x1- the X coordinate of the start pointy1- the Y coordinate of the start pointx2- the X coordinate of the end pointy2- the Y coordinate of the end point- Since:
- 1.2
-
getBounds2D
Returns a high precision and more accurate bounding box of theShapethan thegetBoundsmethod. Note that there is no guarantee that the returnedRectangle2Dis the smallest bounding box that encloses theShape, only that theShapelies entirely within the indicatedRectangle2D. The bounding box returned by this method is usually tighter than that returned by thegetBoundsmethod and never fails due to overflow problems since the return value can be an instance of theRectangle2Dthat uses double precision values to store the dimensions.Note that the definition of insideness can lead to situations where points on the defining outline of the
shapemay not be considered contained in the returnedboundsobject, but only in cases where those points are also not considered contained in the originalshape.If a
pointis inside theshapeaccording to thecontains(point)method, then it must be inside the returnedRectangle2Dbounds object according to thecontains(point)method of thebounds. Specifically:shape.contains(p)requiresbounds.contains(p)If a
pointis not inside theshape, then it might still be contained in theboundsobject:bounds.contains(p)does not implyshape.contains(p)- Specified by:
getBounds2Din interfaceShape- Returns:
- an instance of
Rectangle2Dthat is a high-precision bounding box of theShape. - Since:
- 1.2
- See Also:
-