[MSCE C# U14]调用DTM.CreateFromFile(tinFileName)生成地模后发现地模坐标被自动除了10000,导致地模变小,代码里需要怎么设置?

string fileName = this.tbxFileName.Text;
string terrainName = this.tbxTerrainName.Text;
DTM dtm = DTM.CreateFromFile(fileName);
Bentley.GeometryNET.DPoint3d[] pts = dtm.GetBoundary();

DTMElement dtmElement = new DTMElement(Session.Instance.GetActiveDgnModel(), null, dtm);
dtmElement.Name = terrainName;
dtmElement.AddToModel();

创建的地模出现题中的问题,怎么破?

Parents Reply Children
No Data