Dear all,
I know that MS can not display any 3D content; however, it's possible to open a 3D shape file and display it in 2D.
I need to build a 3D shapefile and I don't know how to proceed.
How to move the following code from 2D to 3D and play for example with 3DVertex?
l = new ShapeFileFeatureLayer("toto.shp", ShapeFileReadWriteMode.ReadWrite);
l.Open();
l.EditTools.BeginTransaction();
LineShape Lines = new LineShape();
Lines.Vertices.Add(new Vertex(p.x, p.y));
l.EditTools.Add(Lines, getColumns(ae));
l.EditTools.CommitTransaction();
l.Close();
Thank you for your help
Patrick.