📄 cstop.c
字号:
/*-*//******************************************************** * point_color -- gets the color of a single point * * * * Parameters * * point_number -- index of the point * * * * Returns * * RGB version of the color. * ********************************************************//*+*/extern float lookup(int index);float point_color(int point_number){ float correction; /* color correction factor */ extern float red,green,blue;/* current colors */ correction = lookup(point_number); return (red*correction * 100.0 + blue*correction * 10.0 + green*correction);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -