📄 fpset.c
字号:
/*----------------------------- MegaWave Module -----------------------------*//* mwcommand name = {fpset}; version = {"1.0"}; author = {"Lionel Moisan"}; function = {"Set a point value of a Fimage"}; usage = { in->in "input Fimage", x->x "position (x)", y->y "position (y)", g->g "value to set", out<-fpset "output Fimage (modified input)" };*/#include "mw.h"Fimage fpset(in,x,y,g)Fimage in;int x,y;float g;{ mw_plot_fimage(in,x,y,g); return(in);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -