本文介绍了圆规中的刻度划分的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何动态地划分刻度,例如min = 50和max = 100,以及刻度值= 55,然后将刻度显示为95,将刻度设为0到100.

How to dynamically divide the scale such as min =50 and max=100 and scale value=55 then scale showing 95 as its taking the scale as 0 to 100.

推荐答案

public static double Scale(double value)
{
    double min = 50.0;
    double max = 100.0;
    if(min == max)
        return 100.0;
    return 100*(value - min)/(max - min);
}


这篇关于圆规中的刻度划分的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 23:29