using GeoAPI.Geometries;
using GisSharpBlog.NetTopologySuite.GeometriesGraph;
namespace GisSharpBlog.NetTopologySuite.Operation.Relate
{
///
/// Used by the NodeMap in a RelateNodeGraph to create RelateNodes.
///
public class RelateNodeFactory : NodeFactory
{
///
///
///
///
///
public override Node CreateNode(ICoordinate coord)
{
return new RelateNode(coord, new EdgeEndBundleStar());
}
}
}