首页 / 浏览问题 / 组件GIS / 问题详情
剖面分析问题
10EXP 2017年06月22日
我是这么写的

 profile = new Profile(scenControl.Scene);
  bool canProfile = profile.Build();
  profile.StartPoint = line3d[0][0];
  profile.EndPoint = line3d[0][1];
  Bitmap bitMap = profile.OutputProfileToBitMap();

然后在运行到

Bitmap bitMap = profile.OutputProfileToBitMap();

这句代码的时候,程序就卡死,也没有错误或异常抛出。

这里的 line3d 是一条三维线,我是想通过三维线的节点设置 StartPoint 和 EndPoint,不在屏幕通过鼠标点击选择
相关的答案: 剖面分析问题

2 个回答

我也遇到了,这个问题最后怎么解决的。
8EXP 2017年09月29日
您好,请先用profile.build执行一下 剖面分析试试呢。

剖面分析我们组件是有示范范例的呢,请您在组件目录找一下SampleCode目录的范例,realspace下的三维分析中就有剖面分析。
邹涛
1
3,389EXP 2017年06月23日
请问最后怎么解决的?
...