lines3d                package:misc3d                R Documentation

_D_r_a_w _3_D _L_i_n_e_s

_D_e_s_c_r_i_p_t_i_o_n:

     Draw connected line segments in three dimensions.

_U_s_a_g_e:

       lines3d(x,y,z,add=FALSE,...)

_A_r_g_u_m_e_n_t_s:

   x,y,z: coordinates of points to connect.

     add: logical; if 'TRUE', add to current 'rgl' graph.

     ...: material and texture properties. See 'rgl.material' for
          details.

_R_e_f_e_r_e_n_c_e_s:

     Daniel Adler, Oleg Nenadic and Walter Zucchini (2003) RGL: A
     R-library for 3D visualization with OpenGL

_S_e_e _A_l_s_o:

     'rgl.lines'.

_E_x_a_m_p_l_e_s:

       #Plot a three-dimensional helix.
       t = seq(0,10*pi,by=pi/50)
       lines3d(4*sin(t),4*cos(t),t,color="red")

