Ejemplo n.º 1
0
 public Region(TexturePoint point, int id)
 {
     Points = new List <TexturePoint> {
         point
     };
     Id = id;
 }
Ejemplo n.º 2
0
 internal bool CompareProperties(TexturePoint point)
 {
     return(Math.Abs(point.Value - Value) < 0.001f);
 }
Ejemplo n.º 3
0
 internal void CopyProperties(TexturePoint point)
 {
     this.Value = point.Value;
 }
Ejemplo n.º 4
0
 public bool ComparePoint(TexturePoint target)
 {
     return(PointsArray[target.x, target.y].CompareProperties(target));
 }