CCT.NUI.Tests.Core.Clustering.ClusterTests.AssertClusterCenterIsAt C# (CSharp) Method

AssertClusterCenterIsAt() private method

private AssertClusterCenterIsAt ( Cluster cluster, int x, int y, int z ) : void
cluster CCT.NUI.Core.Clustering.Cluster
x int
y int
z int
return void
        private void AssertClusterCenterIsAt(Cluster cluster, int x, int y, int z)
        {
            Assert.AreEqual(new Point(x, y, z), cluster.Center);
            Assert.AreEqual(cluster.Location, cluster.Center);
        }
    }