Example usage for com.itextpdf.awt.geom Point2D distance

List of usage examples for com.itextpdf.awt.geom Point2D distance

Introduction

In this page you can find the example usage for com.itextpdf.awt.geom Point2D distance.

Prototype

public double distance(double px, double py) 

Source Link

Usage

From source file:mkl.testarea.itext5.pdfcleanup.PdfCleanUpRegionFilter.java

License:Open Source License

private static double getVectorEuclideanNorm(Point2D vector) {
    return vector.distance(0, 0);
}