HelixToolkit.Wpf.GridLinesVisual3D.GetPoint C# (CSharp) Method

GetPoint() private method

Gets a point on the plane.
private GetPoint ( double x, double y ) : System.Windows.Media.Media3D.Point3D
x double /// The x coordinate. ///
y double /// The y coordinate. ///
return System.Windows.Media.Media3D.Point3D
        private Point3D GetPoint(double x, double y)
        {
            return this.Center + this.widthDirection * x + this.lengthDirection * y;
        }