Announcements

The Autodesk Community Forums has a new look. Read more about what's changed on the Community Announcements board.

How to quickly read the position of multiple points !?

nicholas_wu
Contributor

How to quickly read the position of multiple points !?

nicholas_wu
Contributor
Contributor

hi all :

 

         in PowerMill , there are many points in 1 pattern . is there a way to quickly read the positions of these points in sequence? (like 1.png)

0 Likes
Reply
Accepted solutions (2)
769 Views
4 Replies
Replies (4)

rafael.sansao
Advisor
Advisor
Accepted solution

Try this:

STRING LIST $StartPoints = {}

EDIT PATTERN ; CURVEEDITOR START
CURVEEDITOR MODE REORDER
INT count = list_num_rows('CEReorderSegments.CEListView')
INT increment = 0
WHILE $increment < $count {
	INT s = add_last($StartPoints, list_cell_value('CEReorderSegments.CEListView', $increment, 1))
	$increment = $increment + 1
}
CURVEEDITOR FINISH ACCEPT

 

Rafael Sansão

OptiNC - www.optinc.tech

EESignature

nicholas_wu
Contributor
Contributor
Accepted solution
hi rafael.sansao :

is work , great! thank you.
by the way , is there a way to find the specific command used in this sentence? just like 'CEReorderSegments.CEListView' ....
0 Likes

nicholas_wu
Contributor
Contributor
hi rafael.sansao :

thanks for your reply , is very helpful to me !! 🙂
0 Likes