[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
9.6.3 Surf & Cont sample
C++ code
mglData a(50,40); a.Modify("0.6*sin(2*pi*x)*sin(3*pi*y) + 0.4*cos(3*pi*(x*y))"); gr->Rotate(40,60); gr->Light(true); gr->Box(); gr->Surf(a); gr->Cont(a,"y");
MGL code
new a 50 40 modify a '0.6*sin(2*pi*x)*sin(3*pi*y) + 0.4*cos(3*pi*(x*y))' rotate 40 60 light on box surf a cont a 'y'
Pure C code
HMDT a = mgl_create_data_size(50,40,1); mgl_data_modify(a,"0.6*sin(2*pi*x)*sin(3*pi*y) + 0.4*cos(3*pi*(x*y))",0); mgl_rotate(gr,40.,60.,0.); mgl_set_light(gr,1); mgl_box(gr,1); mgl_surf(gr,a,0); mgl_cont(gr,a,"y",7,NAN); mgl_delete_data(a);
Fortran code
integer a, mgl_create_data_size real zero, nan zero = 0; nan = zero/zero a = mgl_create_data_size(50,40,1) call mgl_data_modify(a,"0.6*sin(2*pi*x)*sin(3*pi*y) + 0.4*cos(3*pi*(x*y))",0) call mgl_rotate(gr,40.,60.,0.) call mgl_set_light(gr,1) call mgl_box(gr,1) call mgl_surf(gr,a,'') call mgl_cont(gr,a,'y',7,nan) call mgl_delete_data(a)
Python
a = mglData(50,40); a.Modify("0.6*sin(2*pi*x)*sin(3*pi*y)+0.4*cos(3*pi*(x*y))"); gr.Rotate(40,60); gr.Light(True); gr.Box(); gr.Surf(a); gr.Cont(a,"y");