Re: Changing the points of a graphic

Clark Parsons ((no email))
Fri, 25 Feb 94 22:03:09 MST

> I can display the points and their parts with statements such as:
> put the points of graphic "one"
> put word 2 of the points of graphic "one"
> put line 2 of the points of graphic "one"
> put item 1 of line 2 of the points of graphic "one"
>
> but I can't seem to figure out how to reverse this approach and send
> vertex x and y changes back to the points to reshape the graphic from a
> script.
>
> Anyone have any suggestions?
>
I found one way that works, and that is to create a field,
and then:
put the points of graphic "one" into field "myfield"
put mynewxcoord into item 1 of line <n> of field "myfield"
put mynewycoord into item 2 of line <n> of field "myfield"
set the points of graphic "one" to field "myfield"

cgp