Class RelateNodeFactory

 1  
 2  
 3 /*
 4  * Copyright (c) 2016 Vivid Solutions.
 5  *
 6  * All rights reserved. This program and the accompanying materials
 7  * are made available under the terms of the Eclipse Public License 2.0
 8  * and Eclipse Distribution License v. 1.0 which accompanies this distribution.
 9  * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v20.html
10  * and the Eclipse Distribution License is available at
11  *
12  * http://www.eclipse.org/org/documents/edl-v10.php.
13  */
14 package org.locationtech.jts.operation.relate;
15  
16 import org.locationtech.jts.geom.Coordinate;
17 import org.locationtech.jts.geomgraph.Node;
18 import org.locationtech.jts.geomgraph.NodeFactory;
19 import org.locationtech.jts.geomgraph.NodeMap;
20  
21 /**
22  * Used by the {@link NodeMap} in a {@link RelateNodeGraph} to create {@link RelateNode}s.
23  *
24  * @version 1.7
25  */
26 public class RelateNodeFactory
27   extends NodeFactory
28 {
29   public Node createNode(Coordinate coord)
30   {
31     return new RelateNode(coord, new EdgeEndBundleStar());
32   }
33 }
34