示例#1
0
文件: Vertex.cs 项目: Grabot/Voronoi
 public Vertex(float X, float Y, EOwnership a_Ownership, float a_FeedingRange)
 {
     Init(X, Y, a_Ownership, a_FeedingRange);
 }
示例#2
0
文件: Vertex.cs 项目: Grabot/Voronoi
 private void Init(float a_X, float a_Y, EOwnership a_Ownership = EOwnership.UNOWNED, float a_FeedingRange = 1)
 {
     this.X = a_X;
     this.Y = a_Y;
     this.Ownership = a_Ownership;
     this.FeedingRange = a_FeedingRange;
 }
示例#3
0
文件: Vertex.cs 项目: Grabot/Voronoi
 public Vertex(float X, float Y, EOwnership a_Ownership)
 {
     Init(X, Y, a_Ownership);
 }