Commit 0b601bff authored by Matthias Betz's avatar Matthias Betz
Browse files

add serializable to polygon intersection

parent aff13def
Pipeline #8509 passed with stage
in 53 seconds
......@@ -18,6 +18,7 @@
*/
package de.hft.stuttgart.citydoctor2.utils;
import java.io.Serializable;
import java.util.List;
import de.hft.stuttgart.citydoctor2.datastructure.ConcretePolygon;
......@@ -30,7 +31,9 @@ import de.hft.stuttgart.citydoctor2.math.Segment3d;
* @author Matthias Betz
*
*/
public class PolygonIntersection {
public class PolygonIntersection implements Serializable {
private static final long serialVersionUID = -6301963226688351725L;
public enum IntersectionType {
NONE, LINE, POLYGON
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment