11 lines
287 B
Java
11 lines
287 B
Java
|
|
package org.example.service;
|
||
|
|
|
||
|
|
import org.example.utils.CommonResult;
|
||
|
|
import org.locationtech.jts.geom.Coordinate;
|
||
|
|
import org.springframework.stereotype.Service;
|
||
|
|
|
||
|
|
|
||
|
|
public interface RingGridService {
|
||
|
|
CommonResult calcFillCut(Coordinate[] coordinates, double range) throws Exception;
|
||
|
|
}
|