コード例 #1
0
        public GridValueInterpolator GetGridValueInterpolator(RenderTexture renderTexture2d, PartitionSettings partitionSettings)
        {
            var calculator   = GetGridValueTextureCalculator(renderTexture2d, partitionSettings);
            var interpolator = new GridValueInterpolator(partitionSettings.SpaceSettings, calculator);

            return(interpolator);
        }
コード例 #2
0
        public void Test1()
        {
            var matrix = Matrix <double> .Build.SparseOfArray(new double[, ]
            {
                { 1, 2, 3 },
                { 4, 5, 6 },
                { 7, 8, 9 },
            });

            var spaceSettings = new SpaceSettings
            {
                GridSize = new List <int> {
                    3, 3
                },
                MinCorner   = VectorUtils.CreateVector(0, 0),
                MaxCorner   = VectorUtils.CreateVector(10, 10),
                MetricsType = MetricsType.Euclidean,
                DensityType = DensityType.Everywhere1
            };

            var getter       = new MatrixGridValueGetter(matrix);
            var interpolator = new GridValueInterpolator(spaceSettings, getter);

            Assert.AreEqual(1, interpolator.GetGridValueAtPoint(0, 0));
            Assert.AreEqual(9, interpolator.GetGridValueAtPoint(10, 10));


            //#TODO add more cases
        }
コード例 #3
0
 public DualFunctionalCalculator(PartitionSettings partitionSettings, GridValueInterpolator psiGridValueGetter)
 {
     _settings           = partitionSettings;
     _psiGridValueGetter = psiGridValueGetter;
 }