IShell3D Factory3D.CreateShell(IEnumerable<Double> param1, IEnumerable<Double> param2, IEnumerable<Int32> param3)
Create a shell
Examples
The following parameters define two triangles to display a square of length 1 in XY plan:
vertices = [0.,0.,0., 1.,0.,0., 1.,1.,0., 0.,1.,0.]
normals = [0.,0.,1., 0.,0.,1., 0.,0.,1., 0.,0.,1.]
connectivity = [0,1,2, 0,2,3]
ExtAPI.Graphics.Scene.Factory3D.CreateShell(vertices, normals, connectivity)