ME3Explorer.CurveEd.CurveGraph.localY C# (CSharp) Method

localY() public method

public localY ( double y ) : double
y double
return double
        public double localY(double y)
        {
            return VerticalScale * (y - VerticalOffset);
        }

Usage Example

Example #1
0
        private void SetValue_Click(object sender, RoutedEventArgs e)
        {
            string res    = Microsoft.VisualBasic.Interaction.InputBox($"Enter new value", "Set Value", point.Value.OutVal.ToString());
            float  result = 0;

            if (float.TryParse(res, out result))
            {
                Y = graph.localY(result);
                graph.Paint(true);
            }
        }
All Usage Examples Of ME3Explorer.CurveEd.CurveGraph::localY