Java Code Examples for sun.font.TextLineComponent#getItalicBounds()
The following examples show how to use
sun.font.TextLineComponent#getItalicBounds() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TextLine.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
public Rectangle2D getItalicBounds() { float left = Float.MAX_VALUE, right = -Float.MAX_VALUE; float top = Float.MAX_VALUE, bottom = -Float.MAX_VALUE; for (int i=0, n = 0; i < fComponents.length; i++, n += 2) { TextLineComponent tlc = fComponents[getComponentLogicalIndex(i)]; Rectangle2D tlcBounds = tlc.getItalicBounds(); float x = locs[n]; float y = locs[n+1]; left = Math.min(left, x + (float)tlcBounds.getX()); right = Math.max(right, x + (float)tlcBounds.getMaxX()); top = Math.min(top, y + (float)tlcBounds.getY()); bottom = Math.max(bottom, y + (float)tlcBounds.getMaxY()); } return new Rectangle2D.Float(left, top, right-left, bottom-top); }
Example 2
Source File: TextLine.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 6 votes |
public Rectangle2D getItalicBounds() { float left = Float.MAX_VALUE, right = -Float.MAX_VALUE; float top = Float.MAX_VALUE, bottom = -Float.MAX_VALUE; for (int i=0, n = 0; i < fComponents.length; i++, n += 2) { TextLineComponent tlc = fComponents[getComponentLogicalIndex(i)]; Rectangle2D tlcBounds = tlc.getItalicBounds(); float x = locs[n]; float y = locs[n+1]; left = Math.min(left, x + (float)tlcBounds.getX()); right = Math.max(right, x + (float)tlcBounds.getMaxX()); top = Math.min(top, y + (float)tlcBounds.getY()); bottom = Math.max(bottom, y + (float)tlcBounds.getMaxY()); } return new Rectangle2D.Float(left, top, right-left, bottom-top); }
Example 3
Source File: TextLine.java From jdk-1.7-annotated with Apache License 2.0 | 6 votes |
public Rectangle2D getItalicBounds() { float left = Float.MAX_VALUE, right = -Float.MAX_VALUE; float top = Float.MAX_VALUE, bottom = -Float.MAX_VALUE; for (int i=0, n = 0; i < fComponents.length; i++, n += 2) { TextLineComponent tlc = fComponents[getComponentLogicalIndex(i)]; Rectangle2D tlcBounds = tlc.getItalicBounds(); float x = locs[n]; float y = locs[n+1]; left = Math.min(left, x + (float)tlcBounds.getX()); right = Math.max(right, x + (float)tlcBounds.getMaxX()); top = Math.min(top, y + (float)tlcBounds.getY()); bottom = Math.max(bottom, y + (float)tlcBounds.getMaxY()); } return new Rectangle2D.Float(left, top, right-left, bottom-top); }
Example 4
Source File: TextLine.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
public Rectangle2D getItalicBounds() { float left = Float.MAX_VALUE, right = -Float.MAX_VALUE; float top = Float.MAX_VALUE, bottom = -Float.MAX_VALUE; for (int i=0, n = 0; i < fComponents.length; i++, n += 2) { TextLineComponent tlc = fComponents[getComponentLogicalIndex(i)]; Rectangle2D tlcBounds = tlc.getItalicBounds(); float x = locs[n]; float y = locs[n+1]; left = Math.min(left, x + (float)tlcBounds.getX()); right = Math.max(right, x + (float)tlcBounds.getMaxX()); top = Math.min(top, y + (float)tlcBounds.getY()); bottom = Math.max(bottom, y + (float)tlcBounds.getMaxY()); } return new Rectangle2D.Float(left, top, right-left, bottom-top); }
Example 5
Source File: TextLine.java From jdk8u_jdk with GNU General Public License v2.0 | 6 votes |
public Rectangle2D getItalicBounds() { float left = Float.MAX_VALUE, right = -Float.MAX_VALUE; float top = Float.MAX_VALUE, bottom = -Float.MAX_VALUE; for (int i=0, n = 0; i < fComponents.length; i++, n += 2) { TextLineComponent tlc = fComponents[getComponentLogicalIndex(i)]; Rectangle2D tlcBounds = tlc.getItalicBounds(); float x = locs[n]; float y = locs[n+1]; left = Math.min(left, x + (float)tlcBounds.getX()); right = Math.max(right, x + (float)tlcBounds.getMaxX()); top = Math.min(top, y + (float)tlcBounds.getY()); bottom = Math.max(bottom, y + (float)tlcBounds.getMaxY()); } return new Rectangle2D.Float(left, top, right-left, bottom-top); }
Example 6
Source File: TextLine.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
public Rectangle2D getItalicBounds() { float left = Float.MAX_VALUE, right = -Float.MAX_VALUE; float top = Float.MAX_VALUE, bottom = -Float.MAX_VALUE; for (int i=0, n = 0; i < fComponents.length; i++, n += 2) { TextLineComponent tlc = fComponents[getComponentLogicalIndex(i)]; Rectangle2D tlcBounds = tlc.getItalicBounds(); float x = locs[n]; float y = locs[n+1]; left = Math.min(left, x + (float)tlcBounds.getX()); right = Math.max(right, x + (float)tlcBounds.getMaxX()); top = Math.min(top, y + (float)tlcBounds.getY()); bottom = Math.max(bottom, y + (float)tlcBounds.getMaxY()); } return new Rectangle2D.Float(left, top, right-left, bottom-top); }
Example 7
Source File: TextLine.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
public Rectangle2D getItalicBounds() { float left = Float.MAX_VALUE, right = -Float.MAX_VALUE; float top = Float.MAX_VALUE, bottom = -Float.MAX_VALUE; for (int i=0, n = 0; i < fComponents.length; i++, n += 2) { TextLineComponent tlc = fComponents[getComponentLogicalIndex(i)]; Rectangle2D tlcBounds = tlc.getItalicBounds(); float x = locs[n]; float y = locs[n+1]; left = Math.min(left, x + (float)tlcBounds.getX()); right = Math.max(right, x + (float)tlcBounds.getMaxX()); top = Math.min(top, y + (float)tlcBounds.getY()); bottom = Math.max(bottom, y + (float)tlcBounds.getMaxY()); } return new Rectangle2D.Float(left, top, right-left, bottom-top); }
Example 8
Source File: TextLine.java From hottub with GNU General Public License v2.0 | 6 votes |
public Rectangle2D getItalicBounds() { float left = Float.MAX_VALUE, right = -Float.MAX_VALUE; float top = Float.MAX_VALUE, bottom = -Float.MAX_VALUE; for (int i=0, n = 0; i < fComponents.length; i++, n += 2) { TextLineComponent tlc = fComponents[getComponentLogicalIndex(i)]; Rectangle2D tlcBounds = tlc.getItalicBounds(); float x = locs[n]; float y = locs[n+1]; left = Math.min(left, x + (float)tlcBounds.getX()); right = Math.max(right, x + (float)tlcBounds.getMaxX()); top = Math.min(top, y + (float)tlcBounds.getY()); bottom = Math.max(bottom, y + (float)tlcBounds.getMaxY()); } return new Rectangle2D.Float(left, top, right-left, bottom-top); }
Example 9
Source File: TextLine.java From Java8CN with Apache License 2.0 | 6 votes |
public Rectangle2D getItalicBounds() { float left = Float.MAX_VALUE, right = -Float.MAX_VALUE; float top = Float.MAX_VALUE, bottom = -Float.MAX_VALUE; for (int i=0, n = 0; i < fComponents.length; i++, n += 2) { TextLineComponent tlc = fComponents[getComponentLogicalIndex(i)]; Rectangle2D tlcBounds = tlc.getItalicBounds(); float x = locs[n]; float y = locs[n+1]; left = Math.min(left, x + (float)tlcBounds.getX()); right = Math.max(right, x + (float)tlcBounds.getMaxX()); top = Math.min(top, y + (float)tlcBounds.getY()); bottom = Math.max(bottom, y + (float)tlcBounds.getMaxY()); } return new Rectangle2D.Float(left, top, right-left, bottom-top); }
Example 10
Source File: TextLine.java From jdk1.8-source-analysis with Apache License 2.0 | 6 votes |
public Rectangle2D getItalicBounds() { float left = Float.MAX_VALUE, right = -Float.MAX_VALUE; float top = Float.MAX_VALUE, bottom = -Float.MAX_VALUE; for (int i=0, n = 0; i < fComponents.length; i++, n += 2) { TextLineComponent tlc = fComponents[getComponentLogicalIndex(i)]; Rectangle2D tlcBounds = tlc.getItalicBounds(); float x = locs[n]; float y = locs[n+1]; left = Math.min(left, x + (float)tlcBounds.getX()); right = Math.max(right, x + (float)tlcBounds.getMaxX()); top = Math.min(top, y + (float)tlcBounds.getY()); bottom = Math.max(bottom, y + (float)tlcBounds.getMaxY()); } return new Rectangle2D.Float(left, top, right-left, bottom-top); }
Example 11
Source File: TextLine.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
public Rectangle2D getItalicBounds() { float left = Float.MAX_VALUE, right = -Float.MAX_VALUE; float top = Float.MAX_VALUE, bottom = -Float.MAX_VALUE; for (int i=0, n = 0; i < fComponents.length; i++, n += 2) { TextLineComponent tlc = fComponents[getComponentLogicalIndex(i)]; Rectangle2D tlcBounds = tlc.getItalicBounds(); float x = locs[n]; float y = locs[n+1]; left = Math.min(left, x + (float)tlcBounds.getX()); right = Math.max(right, x + (float)tlcBounds.getMaxX()); top = Math.min(top, y + (float)tlcBounds.getY()); bottom = Math.max(bottom, y + (float)tlcBounds.getMaxY()); } return new Rectangle2D.Float(left, top, right-left, bottom-top); }
Example 12
Source File: TextLine.java From Bytecoder with Apache License 2.0 | 6 votes |
public Rectangle2D getItalicBounds() { float left = Float.MAX_VALUE, right = -Float.MAX_VALUE; float top = Float.MAX_VALUE, bottom = -Float.MAX_VALUE; for (int i=0, n = 0; i < fComponents.length; i++, n += 2) { TextLineComponent tlc = fComponents[getComponentLogicalIndex(i)]; Rectangle2D tlcBounds = tlc.getItalicBounds(); float x = locs[n]; float y = locs[n+1]; left = Math.min(left, x + (float)tlcBounds.getX()); right = Math.max(right, x + (float)tlcBounds.getMaxX()); top = Math.min(top, y + (float)tlcBounds.getY()); bottom = Math.max(bottom, y + (float)tlcBounds.getMaxY()); } return new Rectangle2D.Float(left, top, right-left, bottom-top); }
Example 13
Source File: TextLine.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
public Rectangle2D getItalicBounds() { float left = Float.MAX_VALUE, right = -Float.MAX_VALUE; float top = Float.MAX_VALUE, bottom = -Float.MAX_VALUE; for (int i=0, n = 0; i < fComponents.length; i++, n += 2) { TextLineComponent tlc = fComponents[getComponentLogicalIndex(i)]; Rectangle2D tlcBounds = tlc.getItalicBounds(); float x = locs[n]; float y = locs[n+1]; left = Math.min(left, x + (float)tlcBounds.getX()); right = Math.max(right, x + (float)tlcBounds.getMaxX()); top = Math.min(top, y + (float)tlcBounds.getY()); bottom = Math.max(bottom, y + (float)tlcBounds.getMaxY()); } return new Rectangle2D.Float(left, top, right-left, bottom-top); }
Example 14
Source File: TextLine.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
public Rectangle2D getItalicBounds() { float left = Float.MAX_VALUE, right = -Float.MAX_VALUE; float top = Float.MAX_VALUE, bottom = -Float.MAX_VALUE; for (int i=0, n = 0; i < fComponents.length; i++, n += 2) { TextLineComponent tlc = fComponents[getComponentLogicalIndex(i)]; Rectangle2D tlcBounds = tlc.getItalicBounds(); float x = locs[n]; float y = locs[n+1]; left = Math.min(left, x + (float)tlcBounds.getX()); right = Math.max(right, x + (float)tlcBounds.getMaxX()); top = Math.min(top, y + (float)tlcBounds.getY()); bottom = Math.max(bottom, y + (float)tlcBounds.getMaxY()); } return new Rectangle2D.Float(left, top, right-left, bottom-top); }
Example 15
Source File: TextLine.java From JDKSourceCode1.8 with MIT License | 6 votes |
public Rectangle2D getItalicBounds() { float left = Float.MAX_VALUE, right = -Float.MAX_VALUE; float top = Float.MAX_VALUE, bottom = -Float.MAX_VALUE; for (int i=0, n = 0; i < fComponents.length; i++, n += 2) { TextLineComponent tlc = fComponents[getComponentLogicalIndex(i)]; Rectangle2D tlcBounds = tlc.getItalicBounds(); float x = locs[n]; float y = locs[n+1]; left = Math.min(left, x + (float)tlcBounds.getX()); right = Math.max(right, x + (float)tlcBounds.getMaxX()); top = Math.min(top, y + (float)tlcBounds.getY()); bottom = Math.max(bottom, y + (float)tlcBounds.getMaxY()); } return new Rectangle2D.Float(left, top, right-left, bottom-top); }
Example 16
Source File: TextLine.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
public Rectangle2D getItalicBounds() { float left = Float.MAX_VALUE, right = -Float.MAX_VALUE; float top = Float.MAX_VALUE, bottom = -Float.MAX_VALUE; for (int i=0, n = 0; i < fComponents.length; i++, n += 2) { TextLineComponent tlc = fComponents[getComponentLogicalIndex(i)]; Rectangle2D tlcBounds = tlc.getItalicBounds(); float x = locs[n]; float y = locs[n+1]; left = Math.min(left, x + (float)tlcBounds.getX()); right = Math.max(right, x + (float)tlcBounds.getMaxX()); top = Math.min(top, y + (float)tlcBounds.getY()); bottom = Math.max(bottom, y + (float)tlcBounds.getMaxY()); } return new Rectangle2D.Float(left, top, right-left, bottom-top); }
Example 17
Source File: TextLine.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
public Rectangle2D getItalicBounds() { float left = Float.MAX_VALUE, right = -Float.MAX_VALUE; float top = Float.MAX_VALUE, bottom = -Float.MAX_VALUE; for (int i=0, n = 0; i < fComponents.length; i++, n += 2) { TextLineComponent tlc = fComponents[getComponentLogicalIndex(i)]; Rectangle2D tlcBounds = tlc.getItalicBounds(); float x = locs[n]; float y = locs[n+1]; left = Math.min(left, x + (float)tlcBounds.getX()); right = Math.max(right, x + (float)tlcBounds.getMaxX()); top = Math.min(top, y + (float)tlcBounds.getY()); bottom = Math.max(bottom, y + (float)tlcBounds.getMaxY()); } return new Rectangle2D.Float(left, top, right-left, bottom-top); }
Example 18
Source File: TextLine.java From dragonwell8_jdk with GNU General Public License v2.0 | 6 votes |
public Rectangle2D getItalicBounds() { float left = Float.MAX_VALUE, right = -Float.MAX_VALUE; float top = Float.MAX_VALUE, bottom = -Float.MAX_VALUE; for (int i=0, n = 0; i < fComponents.length; i++, n += 2) { TextLineComponent tlc = fComponents[getComponentLogicalIndex(i)]; Rectangle2D tlcBounds = tlc.getItalicBounds(); float x = locs[n]; float y = locs[n+1]; left = Math.min(left, x + (float)tlcBounds.getX()); right = Math.max(right, x + (float)tlcBounds.getMaxX()); top = Math.min(top, y + (float)tlcBounds.getY()); bottom = Math.max(bottom, y + (float)tlcBounds.getMaxY()); } return new Rectangle2D.Float(left, top, right-left, bottom-top); }