Example usage for com.itextpdf.text.pdf.parser Vector get

List of usage examples for com.itextpdf.text.pdf.parser Vector get

Introduction

In this page you can find the example usage for com.itextpdf.text.pdf.parser Vector get.

Prototype

public float get(final int index) 

Source Link

Document

Gets the value from a coordinate of the vector

Usage

From source file:com.cyberninjas.pdf.PageVector.java

License:Open Source License

/**
 * Creates a new PageVector./*from   w  w w  .j  ava 2s .  c  o m*/
 *
 * @param pageNum the page number
 * @param vector the point in space.
 */
public PageVector(final int pageNum, final Vector vector) {
    this(pageNum, vector.get(Vector.I1), vector.get(Vector.I2), vector.get(Vector.I3));
}