Rev 7788 | Rev 7796 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 7788 | Rev 7792 | ||
---|---|---|---|
Line 1230... | Line 1230... | ||
1230 | if( strstr(get_string(infile,1),"point") != 0 ){animation_type = 15;}else{canvas_error("the only animation type (for now) is \"point\"...");} |
1230 | if( strstr(get_string(infile,1),"point") != 0 ){animation_type = 15;}else{canvas_error("the only animation type (for now) is \"point\"...");} |
1231 | break; |
1231 | break; |
1232 | case LEVELCURVE: |
1232 | case LEVELCURVE: |
1233 | /* |
1233 | /* |
1234 | @levelcurve color,expression in x/y,l1,l2,... |
1234 | @levelcurve color,expression in x/y,l1,l2,... |
1235 | |
1235 | @draws very primitive level curves for expression, with levels l1,l2,l3,...,l_n |
- | 1236 | @the quality is <b>not to be compared</b> with the Flydraw levelcurve. <br />(choose flydraw if you want quality...) |
|
- | 1237 | @every individual level curve may be set 'onclick / drag xy' <br />e.g. every single level curve (l1,l2,l3...l_n) has a unique identifier |
|
1236 | |
1238 | @note : the arrays for holding the javascript data are limited in size |
- | 1239 | @note : reduce image size if javascript data arrays get overloaded<br />(command 'plotsteps int' will not control the data size of the plot...) |
|
1237 | */ |
1240 | */ |
1238 |
|
1241 | fill_color = get_color(infile,0); |
1239 | char *fun1 = get_string_argument(infile,0); |
1242 | char *fun1 = get_string_argument(infile,0); |
1240 | if( strlen(fun1) == 0 ){canvas_error("function is NOT OK !");} |
1243 | if( strlen(fun1) == 0 ){canvas_error("function is NOT OK !");} |
1241 | i = 0; |
1244 | i = 0; |
1242 | done = FALSE; |
1245 | done = FALSE; |
1243 | while( !done ){ |
1246 | while( !done ){ |