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

AssertClusterCenterIsAt() private method

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