Hyperion.Core.Geometry.BoundingBox.Lerp C# (CSharp) Method

Lerp() public method

public Lerp ( double tx, double ty, double tz ) : Point
tx double
ty double
tz double
return Point
        public Point Lerp(double tx, double ty, double tz)
        {
            return new Point (Util.Lerp (tx, pMin.x, pMax.x),
                Util.Lerp (ty, pMin.y, pMax.y),
                Util.Lerp (tz, pMin.z, pMax.z));
        }