- java.lang.Object
-
- java.awt.font.LayoutPath
-
public abstract class LayoutPath extends Object
LayoutPath provides a mapping between locations relative to the baseline and points in user space. Locations consist of an advance along the baseline, and an offset perpendicular to the baseline at the advance. Positive values along the perpendicular are in the direction that is 90 degrees clockwise from the baseline vector. Locations are represented as aPoint2D
, where x is the advance and y is the offset.- Since:
- 1.6
-
-
Constructor Summary
Constructors Constructor and Description LayoutPath()
-
Method Summary
Methods Modifier and Type Method and Description abstract void
pathToPoint(Point2D location, boolean preceding, Point2D point)
Convert a location relative to the path to a point in user coordinates.abstract boolean
pointToPath(Point2D point, Point2D location)
Convert a point in user space to a location relative to the path.
-
-
-
Method Detail
-
pointToPath
public abstract boolean pointToPath(Point2D point, Point2D location)
Convert a point in user space to a location relative to the path. The location is chosen so as to minimize the distance from the point to the path (e.g., the magnitude of the offset will be smallest). If there is more than one such location, the location with the smallest advance is chosen.- Parameters:
point
- the point to convert. If it is not the same object as location, point will remain unmodified by this call.location
- aPoint2D
to hold the returned location. It can be the same object as point.- Returns:
- true if the point is associated with the portion of the path preceding the location, false if it is associated with the portion following. The default, if the location is not at a break or sharp bend in the path, is to return true.
- Throws:
NullPointerException
- if point or location is null- Since:
- 1.6
-
pathToPoint
public abstract void pathToPoint(Point2D location, boolean preceding, Point2D point)
Convert a location relative to the path to a point in user coordinates. The path might bend abruptly or be disjoint at the location's advance. If this is the case, the value of 'preceding' is used to disambiguate the portion of the path whose location and slope is to be used to interpret the offset.- Parameters:
location
- aPoint2D
representing the advance (in x) and offset (in y) of a location relative to the path. If location is not the same object as point, location will remain unmodified by this call.preceding
- if true, the portion preceding the advance should be used, if false the portion after should be used. This has no effect if the path does not break or bend sharply at the advance.point
- aPoint2D
to hold the returned point. It can be the same object as location.- Throws:
NullPointerException
- if location or point is null- Since:
- 1.6
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-java/awt/font/LayoutPath.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.