Closed GoogleCodeExporter closed 8 years ago
should have been
Subsequently add features of JTS 1.11.
When that is done go on to head of trunk (or 1.12, whichever is first :))
Original comment by felix.ob...@netcologne.de
on 17 Jun 2011 at 10:06
It seems like JTS has beaten us to 1.12.
Lets go!
Original comment by felix.ob...@netcologne.de
on 1 Aug 2011 at 2:07
This issue was updated by revision r678.
NetTopologySuite.Algorithm.CGAlgorithms
- Fixed up some xml doc comments
NetTopologySuite.Geometries.CoordinateList
- Fixed up some xml doc comments
NetTopologySuite.Geometries.Geometry
- Fixed up some xml doc comments
NetTopologySuite.Geometries.LineSegment
- Fixed up some xml doc comments
NetTopologySuite.GeometriesGraph.QuadrantOp
- Fixed up some xml doc comments
NetTopologySuite.Operation.Buffer.BufferInputLineSimplifier
- Fixed some indentation
NetTopologySuite.Operation.Polygonize.EdgeRing
- Fixed up some xml doc comments
NetTopologySuite.Triangulate.ConformingDelaunayTriangulationBuilder
- Converted from java to .net
- This class used a TreeMap of Vertex objects in java, so I converted it to an OrderedDictionary<ICoordinate, Vertex> as per another example I saw in NTS - I'm not sure if this is correct?
NetTopologySuite.Triangulate.ConformingDelaunayTriangulator
- Converted from java to .net
NetTopologySuite.Triangulate.ConstraintEnforcementException
- Converted from java to .net
NetTopologySuite.Triangulate.ConstraintSplitPointFinder
- Converted from java to .net
NetTopologySuite.Triangulate.ConstraintVertex
- Converted from java to .net
NetTopologySuite.Triangulate.ConstraintVertexFactory
- Converted from java to .net
NetTopologySuite.Triangulate.DelaunayTriangulationBuilder
- Converted from java to .net
NetTopologySuite.Triangulate.IncrementalDelaunayTriangulator
- Converted from java to .net
NetTopologySuite.Triangulate.MidpointSplitPointFinder
- Converted from java to .net
NetTopologySuite.Triangulate.NonEncroachingSplitPointFinder
- Converted from java to .net
NetTopologySuite.Triangulate.Segment
- Updated xml doc comments
NetTopologySuite.Triangulate.SplitSegment
- Updated xml doc comments
NetTopologySuite.Triangulate.VertexTaggedGeometryDataMapper
- Updated xml doc comments
- Modified some members to be styled like .net
- This class used a TreeMap of coordinate objects in java, so I converted it to an OrderedDictionary<ICoordinate, object> as per another example I saw in NTS - I'm not sure if this is correct?
NetTopologySuite.Triangulate.VoronoiDiagramBuilder
- Converted from java to .net
NetTopologySuite.Triangulate.QuadEdge.EdgeConnectedTriangleTraversal
- Updated xml doc comments
- Modified some members to be styled like .net
NetTopologySuite.Triangulate.QuadEdge.IQuadEdgeLocator
- Updated xml doc comments
NetTopologySuite.Triangulate.QuadEdge.ITraversalVisitor
- Updated xml doc comments
NetTopologySuite.Triangulate.QuadEdge.ITriangleVisitor
- Updated xml doc comments
NetTopologySuite.Triangulate.QuadEdge.LastFoundQuadEdgeLocator
- Converted from java to .net
NetTopologySuite.Triangulate.QuadEdge.LocateFailureException
- Modified some members to be styled like .net
NetTopologySuite.Triangulate.QuadEdge.QuadEdge
- Updated xml doc comments
- Modified some members to be styled like .net
NetTopologySuite.Triangulate.QuadEdge.QuadEdgeSubdivision
- Updated xml doc comments
- Modified some members to be styled like .net
NetTopologySuite.Triangulate.QuadEdge.QuadEdgeTriangle
- Updated xml doc comments
- Modified some members to be styled like .net
NetTopologySuite.Triangulate.QuadEdge.QuadEdgeUtil
- Updated xml doc comments
- Modified some members to be styled like .net
NetTopologySuite.Triangulate.QuadEdge.Vertex
- Updated xml doc comments
- Modified some members to be styled like .net
NetTopologySuite.Utilities.GeometricShapeFactory
- Applied code changes between JTS 1.10 and 1.11
Original comment by jackson....@gmail.com
on 21 Aug 2011 at 7:05
I fixed a bug in Segment class, which makes my basic triangulation test pass
smoothly.
Todd or anyone else, could you please check with your TINs?
Original comment by felix.ob...@netcologne.de
on 1 Sep 2011 at 10:09
After a weekend of profiling, to me the probable cause for the performance
difference between JTS and NTS on triangulation is that using ICoordinate
interfaces on Coordinate class prevents inlining of get_X and get_Y for
internal mathematics.
Any other ideas? I'll set this issue to fixed and start a new one regarding
speed comparison.
Original comment by felix.ob...@netcologne.de
on 5 Sep 2011 at 7:19
Original issue reported on code.google.com by
felix.ob...@netcologne.de
on 17 Jun 2011 at 10:04