getpoint()是选择一点,请问大侠们有没有连续选择点多点的函数呢
getpoint()是选择一点,请问大侠们有没有连续选择点多点的函数呢?或者有没有好的实现方法?sieben 发表于 2014-12-4 08:46 static/image/common/back.gif
Point3dCollection pClt1 = new Point3dCollection();
PromptPointOptions ppOpt ...
非常感谢~~~ 加循环WHILE Point3dCollection pClt1 = new Point3dCollection();
PromptPointOptions ppOpt41 = new PromptPointOptions("\n下一点");
ppOpt41.AllowNone = true;
ppOpt41.UseBasePoint = true;
ppOpt41.UseDashedLine = true;
PromptPointResult ppRes41 = sc.ed.GetPoint("\n开始点");
while (ppRes41.Status == PromptStatus.OK)
{
pClt1.Add(ppRes41.Value);
ppOpt41.BasePoint = ppRes41.Value;
ppRes41 = sc.ed.GetPoint(ppOpt41);
} 大家连续选择多点是怎么实现的? 434939575 发表于 2014-12-3 23:48 static/image/common/back.gif
加循环WHILE
非常感谢~~~
页:
[1]