[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
9.4.20 Dots sample
C++ code
mglData a("hotdogs.pts"); a.Norm(-1,1,true); gr->Rotate(40,60); gr->Box(); gr->Dots(a,"p");
MGL code
read a 'hotdogs.pts' norm a -1 1 on rotate 40 60 box dots a 'p'
Pure C code
HMDT a = mgl_create_data_file("hotdogs.pts"); mgl_data_norm(a,-1.,1.,1,0); mgl_rotate(gr,40.,60.,0.); mgl_box(gr,1); mgl_dots_tr(gr,a,"p"); mgl_delete_data(a);
Fortran code
integer a, mgl_create_data_file a = mgl_create_data_file("hotdogs.pts") call mgl_data_norm(a,-1.,1.,1,0) call mgl_rotate(gr,40.,60.,0.) call mgl_box(gr,1) call mgl_dots_tr(gr,a,"p") call mgl_delete_data(a)
Python
a = mglData("hotdogs.pts"); a.Norm(-1,1,True); gr.Rotate(40,60); gr.Light(True); gr.Box(); gr.Dots(a);