[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
9.4.2 SurfA sample
C++ code
mglData a(50,40), b(50,40); a.Modify("0.6*sin(2*pi*x)*sin(3*pi*y) + 0.4*cos(3*pi*(x*y))"); b.Modify("0.6*cos(2*pi*x)*cos(3*pi*y) + 0.4*cos(3*pi*(x*y))"); gr->Rotate(40,60); gr->Light(true); gr->Alpha(true); gr->Box(); gr->SurfA(a,b);
MGL code
new a 50 40 new b 50 40 modify a '0.6*sin(2*pi*x)*sin(3*pi*y) + 0.4*cos(3*pi*(x*y))' modify b '0.6*cos(2*pi*x)*cos(3*pi*y) + 0.4*cos(3*pi*(x*y))' rotate 40 60 light on alpha on box surfa a b
Pure C code
HMDT a, b; a = mgl_create_data_size(50,40,1); b = 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_data_modify(b,"0.6*cos(2*pi*x)*cos(3*pi*y) + 0.4*cos(3*pi*(x*y))",0); mgl_rotate(gr,40.,60.,0.); mgl_set_light(gr,1); mgl_set_alpha(gr,1); mgl_box(gr,1); mgl_surfa(gr,a,b,0); mgl_delete_data(a); mgl_delete_data(b);
Fortran code
integer a,b, mgl_create_data_size a = mgl_create_data_size(50,40,1); b = 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_data_modify(b,"0.6*cos(2*pi*x)*cos(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_set_alpha(gr,1); call mgl_box(gr,1) call mgl_surfa(gr,a,b,'') call mgl_delete_data(a) call mgl_delete_data(b)
Python
a, b = mglData(50,40), mglData(50,40); a.Modify("0.6*sin(2*pi*x)*sin(3*pi*y)+0.4*cos(3*pi*(x*y))"); b.Modify("0.6*cos(2*pi*x)*cos(3*pi*y)+0.4*cos(3*pi*(x*y))"); gr.Rotate(40,60); gr.Light(True); gr.Alpha(True); gr.Box(); gr.SurfC(a,b);