Uses of Class
com.lowagie.text.pdf.parser.Vector

Packages that use Vector
Package
Description
 
  • Uses of Vector in com.lowagie.text.pdf.parser

    Fields in com.lowagie.text.pdf.parser declared as Vector
    Modifier and Type
    Field
    Description
    private Vector
    ParsedTextImpl.baseline
    Deprecated.
    We track a vector representing our baseline, left->right, so that calculations of line- change can be accurate, even with 0-length words (representing lone spaces, when those are rendered by the PDF).
    private Vector
    ParsedTextImpl.endPoint
    Deprecated.
     
    private Vector
    ParsedTextImpl.startPoint
    Deprecated.
     
    Methods in com.lowagie.text.pdf.parser that return Vector
    Modifier and Type
    Method
    Description
    Vector.add(Vector v)
    Deprecated.
    Computes the sum of this vector and the specified vector
    Vector.cross(Matrix by)
    Deprecated.
    Computes the cross product of this vector and the specified matrix
    Vector.cross(Vector with)
    Deprecated.
    Computes the cross product of this vector and the specified vector
    ParsedTextImpl.getBaseline()
    Deprecated.
    Return the vector representing the baseline of this text chunk, even if the length of the text is zero.
    ParsedTextImpl.getEndPoint()
    Deprecated.
     
    ParsedTextImpl.getStartPoint()
    Deprecated.
     
    private static Vector
    ParsedText.pointToUserSpace(float xOffset, float yOffset, Matrix textToUserSpaceTransformMatrix)
    Deprecated.
     
    Vector.subtract(Vector v)
    Deprecated.
    Computes the difference between this vector and the specified vector
    Methods in com.lowagie.text.pdf.parser with parameters of type Vector
    Modifier and Type
    Method
    Description
    Vector.add(Vector v)
    Deprecated.
    Computes the sum of this vector and the specified vector
    private Word
    ParsedText.createWord(StringBuffer wordAccum, float wordStartOffset, float wordEndOffset, Vector baseline, boolean wordsAreComplete, boolean currentBreakBefore)
    Deprecated.
    Create a word to represent a broken substring at a space.
    Vector.cross(Vector with)
    Deprecated.
    Computes the cross product of this vector and the specified vector
    private static float
    ParsedText.distance(Vector startPos, Vector endPos)
    Deprecated.
     
    float
    Vector.dot(Vector with)
    Deprecated.
    Computes the dot product of this vector with the specified vector
    Vector.subtract(Vector v)
    Deprecated.
    Computes the difference between this vector and the specified vector
    Constructors in com.lowagie.text.pdf.parser with parameters of type Vector
    Modifier
    Constructor
    Description
    (package private)
    ParsedTextImpl(String text, Vector startPoint, Vector endPoint, Vector baseline, float ascent, float descent, float spaceWidth)
    Deprecated.
     
    (package private)
    Word(String text, float ascent, float descent, Vector startPoint, Vector endPoint, Vector baseline, float spaceWidth, boolean isCompleteWord, boolean breakBefore)
    Deprecated.