All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.spiro.addrparser.common.ContainPointJudge Maven / Gradle / Ivy

The newest version!
package tech.spiro.addrparser.common;

import java.util.List;

/**
 * Interface to judge whether a point in polygons
 * @author Spiro Huang
 * @since 1.0
 */
public interface ContainPointJudge {

    /**
     * Initialize polygons
     * @param polyline Multi polygons point list
     */
    void initPolygons(List> polyline);

    boolean contain(Point point);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy