Original Tip Date: Nov 6, 2006
In mstn ss3
if you really have 3d dtm or surface or mesh then you can use the the View settings ( Control B) to show slope in the rendered views as THEMATIC map if you dont get it look it up in help under thematic and slope, it can show slope in different…
Phillip:
You should not process points if MyElement.IsIntersectableElement returns False.
It should be like this:
If MyElement.IsIntersectableElement Then points = MyElement.AsIntersectableElement.GetIntersectionPoints(MyElement2, Matrix3dIdentity…
You've mixing program code with queued commands, which is not a good idea. Use either key-ins or program code, but not both.
In this case, you queue a command to send a data point in the middle of your loop. A queued command won't bubble to the top…
Write a class that Implements ILocateCommandEvents. That will let a user pick elements. You can check each element and verify that it passes whatever criteria you want (e.g. user can select only area objects). For each valid element, add it to the selection…
Hi Pablo,
you are probably right there is no tool or simple workflow how to extend more lines at both ends at once.
Please check the attached macro, it's a kind of proof of concept (written off-hand, so 100% functionality is not guaranteed ;-). It works…