Skip to content

Commit fa7960d

Browse files
committed
Initial commit
1 parent a681480 commit fa7960d

16 files changed

+16
-16
lines changed

Delaunay/Edge.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections;
33
using System.Collections.Generic;
44

5-
namespace csDelaunay {
5+
namespace VoronoiPolygon {
66

77
/*
88
* The line segment connecting the two Sites is part of the Delaunay triangulation

Delaunay/EdgeList.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Collections;
22
using System.Collections.Generic;
33

4-
namespace csDelaunay {
4+
namespace VoronoiPolygon {
55

66
public class EdgeList {
77

Delaunay/EdgeReorderer.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections;
33
using System.Collections.Generic;
44

5-
namespace csDelaunay {
5+
namespace VoronoiPolygon {
66

77
public class EdgeReorderer {
88

Delaunay/Halfedge.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Collections;
22
using System.Collections.Generic;
33

4-
namespace csDelaunay {
4+
namespace VoronoiPolygon {
55

66
public class Halfedge {
77

Delaunay/HalfedgePriorityQueue.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Collections;
22
using System.Collections.Generic;
33

4-
namespace csDelaunay {
4+
namespace VoronoiPolygon {
55

66
// Also know as heap
77
public class HalfedgePriorityQueue {

Delaunay/ICoord.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Collections;
22

3-
namespace csDelaunay {
3+
namespace VoronoiPolygon {
44
public interface ICoord {
55

66
Vector2f Coord {get;set;}

Delaunay/LR.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace csDelaunay {
1+
namespace VoronoiPolygon {
22

33
public class LR {
44

Delaunay/Site.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections;
33
using System.Collections.Generic;
44

5-
namespace csDelaunay {
5+
namespace VoronoiPolygon {
66

77
public class Site : ICoord {
88

Delaunay/SiteList.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections;
33
using System.Collections.Generic;
44

5-
namespace csDelaunay {
5+
namespace VoronoiPolygon {
66

77
public class SiteList {
88

Delaunay/Triangle.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Collections;
22
using System.Collections.Generic;
33

4-
namespace csDelaunay {
4+
namespace VoronoiPolygon {
55

66
public class Triangle {
77

Delaunay/Vertex.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections;
33
using System.Collections.Generic;
44

5-
namespace csDelaunay {
5+
namespace VoronoiPolygon {
66

77
public class Vertex : ICoord {
88

Delaunay/Voronoi.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections;
33
using System.Collections.Generic;
44

5-
namespace csDelaunay {
5+
namespace VoronoiPolygon {
66

77
public class Voronoi {
88

Geom/Circle.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Collections;
22

3-
namespace csDelaunay {
3+
namespace VoronoiPolygon {
44
public class Circle {
55

66
public Vector2f center;

Geom/LineSegment.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Collections;
22
using System.Collections.Generic;
33

4-
namespace csDelaunay {
4+
namespace VoronoiPolygon {
55

66
public class LineSegment {
77

Geom/Polygon.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections;
33
using System.Collections.Generic;
44

5-
namespace csDelaunay {
5+
namespace VoronoiPolygon {
66
public class Polygon {
77

88
private List<Vector2f> vertices;

Geom/Winding.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace csDelaunay {
1+
namespace VoronoiPolygon {
22

33
public enum Winding {
44
CLOCKWISE, COUNTERCLOCKWISE, NONE

0 commit comments

Comments
 (0)