Ejemplo n.º 1
0
 public SearchBlock(SearchPointData data)
 {
     Data                = data;
     Indices             = new List <int>();
     InvestigatedIndices = new List <int>();
     Center              = Vector3.zero;
     Sum   = Vector3.zero;
     Index = 0;
 }
Ejemplo n.º 2
0
        public void WriteTo(SearchPointData other)
        {
            other.Points.Clear();

            for (int i = 0; i < Points.Count; i++)
            {
                other.Points.Add(Points[i]);
            }
        }
Ejemplo n.º 3
0
 public SearchBlockCache(SearchPointData points)
 {
     _points = points;
 }