The Float class defines an ellipse specified in float precision.
The Float class defines an ellipse specified in float precision.
(->float)
(->float x y w h)
Constructor.
Constructs and initializes an Ellipse2D from the specified coordinates.
x - the X coordinate of the upper-left corner of the framing rectangle - float
y - the Y coordinate of the upper-left corner of the framing rectangle - float
w - the width of the framing rectangle - float
h - the height of the framing rectangle - float
Constructor. Constructs and initializes an Ellipse2D from the specified coordinates. x - the X coordinate of the upper-left corner of the framing rectangle - `float` y - the Y coordinate of the upper-left corner of the framing rectangle - `float` w - the width of the framing rectangle - `float` h - the height of the framing rectangle - `float`
(empty? this)
Determines whether the RectangularShape is empty. When the RectangularShape is empty, it encloses no area.
returns: true if the RectangularShape is empty;
false otherwise. - boolean
Determines whether the RectangularShape is empty. When the RectangularShape is empty, it encloses no area. returns: true if the RectangularShape is empty; false otherwise. - `boolean`
(get-bounds-2-d this)
Returns a high precision and more accurate bounding box of the Shape than the getBounds method. Note that there is no guarantee that the returned Rectangle2D is the smallest bounding box that encloses the Shape, only that the Shape lies entirely within the indicated Rectangle2D. The bounding box returned by this method is usually tighter than that returned by the getBounds method and never fails due to overflow problems since the return value can be an instance of the Rectangle2D that 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 shape may not be considered contained in the returned bounds object, but only in cases where those points are also not considered contained in the original shape.
If a point is inside the shape according to the contains(point) method, then it must be inside the returned Rectangle2D bounds object according to the contains(point) method of the bounds. Specifically:
shape.contains(p) requires bounds.contains(p)
If a point is not inside the shape, then it might still be contained in the bounds object:
bounds.contains(p) does not imply shape.contains(p)
returns: an instance of Rectangle2D that is a
high-precision bounding box of the Shape. - java.awt.geom.Rectangle2D
Returns a high precision and more accurate bounding box of the Shape than the getBounds method. Note that there is no guarantee that the returned Rectangle2D is the smallest bounding box that encloses the Shape, only that the Shape lies entirely within the indicated Rectangle2D. The bounding box returned by this method is usually tighter than that returned by the getBounds method and never fails due to overflow problems since the return value can be an instance of the Rectangle2D that 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 shape may not be considered contained in the returned bounds object, but only in cases where those points are also not considered contained in the original shape. If a point is inside the shape according to the contains(point) method, then it must be inside the returned Rectangle2D bounds object according to the contains(point) method of the bounds. Specifically: shape.contains(p) requires bounds.contains(p) If a point is not inside the shape, then it might still be contained in the bounds object: bounds.contains(p) does not imply shape.contains(p) returns: an instance of Rectangle2D that is a high-precision bounding box of the Shape. - `java.awt.geom.Rectangle2D`
(get-height this)
Returns the height of the framing rectangle in double precision.
returns: the height of the framing rectangle. - double
Returns the height of the framing rectangle in double precision. returns: the height of the framing rectangle. - `double`
(get-width this)
Returns the width of the framing rectangle in double precision.
returns: the width of the framing rectangle. - double
Returns the width of the framing rectangle in double precision. returns: the width of the framing rectangle. - `double`
(get-x this)
Returns the X coordinate of the upper-left corner of the framing rectangle in double precision.
returns: the X coordinate of the upper-left corner of
the framing rectangle. - double
Returns the X coordinate of the upper-left corner of the framing rectangle in double precision. returns: the X coordinate of the upper-left corner of the framing rectangle. - `double`
(get-y this)
Returns the Y coordinate of the upper-left corner of the framing rectangle in double precision.
returns: the Y coordinate of the upper-left corner of
the framing rectangle. - double
Returns the Y coordinate of the upper-left corner of the framing rectangle in double precision. returns: the Y coordinate of the upper-left corner of the framing rectangle. - `double`
(height this)
Instance Field.
The overall height of this Ellipse2D.
type: float
Instance Field. The overall height of this Ellipse2D. type: float
(set-frame this x y w h)
Sets the location and size of the framing rectangle of this Shape to the specified rectangular values.
x - the X coordinate of the upper-left corner of the specified rectangular shape - float
y - the Y coordinate of the upper-left corner of the specified rectangular shape - float
w - the width of the specified rectangular shape - float
h - the height of the specified rectangular shape - float
Sets the location and size of the framing rectangle of this Shape to the specified rectangular values. x - the X coordinate of the upper-left corner of the specified rectangular shape - `float` y - the Y coordinate of the upper-left corner of the specified rectangular shape - `float` w - the width of the specified rectangular shape - `float` h - the height of the specified rectangular shape - `float`
(width this)
Instance Field.
The overall width of this Ellipse2D.
type: float
Instance Field. The overall width of this Ellipse2D. type: float
(x this)
Instance Field.
The X coordinate of the upper-left corner of the framing rectangle of this Ellipse2D.
type: float
Instance Field. The X coordinate of the upper-left corner of the framing rectangle of this Ellipse2D. type: float
(y this)
Instance Field.
The Y coordinate of the upper-left corner of the framing rectangle of this Ellipse2D.
type: float
Instance Field. The Y coordinate of the upper-left corner of the framing rectangle of this Ellipse2D. type: float
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close