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

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

Introduction

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

Prototype

int I3

To view the source code for com.itextpdf.text.pdf.parser Vector I3.

Click Source Link

Document

index of the Z coordinate

Usage

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

License:Open Source License

/**
 * Creates a new PageVector.//  w w w .j  ava2 s. 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));
}