Re: Move in Reverse

2023-01-18 Thread J. Landman Gay via use-livecode

Mark's just irritated that he couldn't make a pun out of it.
--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
On January 18, 2023 10:54:47 AM Roger Guay via use-livecode 
 wrote:



From what I’ve see, that is a very rare occurrence.

On Jan 17, 2023, at 8:06 PM, Mark Wieder via use-livecode 
 wrote:


On 1/17/23 18:35, Roger Guay via use-livecode wrote:
Sorry for not being clear. I want to first move a grc “X” to the points of 
a polygon and then reverse direction. I thought there might be some 
esoteric code for the reverse direction like

move grc “X” to the inverse points of grc Poly1
… but no cigar?


No worries. You were clear, I was being dense.

--
Mark Wieder
ahsoftw...@gmail.com


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your 
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-livecode



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your 
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-livecode





___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Move in Reverse

2023-01-18 Thread Roger Guay via use-livecode
From what I’ve see, that is a very rare occurrence.

> On Jan 17, 2023, at 8:06 PM, Mark Wieder via use-livecode 
>  wrote:
> 
> On 1/17/23 18:35, Roger Guay via use-livecode wrote:
>> Sorry for not being clear. I want to first move a grc “X” to the points of a 
>> polygon and then reverse direction. I thought there might be some esoteric 
>> code for the reverse direction like
>>  move grc “X” to the inverse points of grc Poly1
>> … but no cigar?
> 
> No worries. You were clear, I was being dense.
> 
> -- 
> Mark Wieder
> ahsoftw...@gmail.com
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Move in Reverse

2023-01-17 Thread Mark Wieder via use-livecode

On 1/17/23 18:35, Roger Guay via use-livecode wrote:

Sorry for not being clear. I want to first move a grc “X” to the points of a 
polygon and then reverse direction. I thought there might be some esoteric code 
for the reverse direction like

move grc “X” to the inverse points of grc Poly1

… but no cigar?


No worries. You were clear, I was being dense.

--
 Mark Wieder
 ahsoftw...@gmail.com


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Move in Reverse

2023-01-17 Thread Roger Guay via use-livecode
Sorry for not being clear. I want to first move a grc “X” to the points of a 
polygon and then reverse direction. I thought there might be some esoteric code 
for the reverse direction like 

move grc “X” to the inverse points of grc Poly1

… but no cigar?

Roger


> On Jan 17, 2023, at 5:56 PM, Mark Wieder via use-livecode 
>  wrote:
> 
> On 1/17/23 16:34, Alex Tweedly via use-livecode wrote:
>> He's moving the graphic object "to" the points of a polygon - i.e. to each 
>> in turn.
>> So the movement would be reversed.
> 
> Doh! Got it.
> 
> -- 
> Mark Wieder
> ahsoftw...@gmail.com
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Move in Reverse

2023-01-17 Thread Mark Wieder via use-livecode

On 1/17/23 16:34, Alex Tweedly via use-livecode wrote:
He's moving the graphic object "to" the points of a polygon - i.e. to 
each in turn.


So the movement would be reversed.


Doh! Got it.

--
 Mark Wieder
 ahsoftw...@gmail.com


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Move in Reverse

2023-01-17 Thread Bob Sneidar via use-livecode
Can't he just repeat with i = the number of lines of the points of polygon 1 
down to 1?

Bob S


> On Jan 17, 2023, at 16:34 , Alex Tweedly via use-livecode 
>  wrote:
> 
> He's moving the graphic object "to" the points of a polygon - i.e. to each in 
> turn.
> 
> So the movement would be reversed.
> 
> On 17/01/2023 23:23, Mark Wieder via use-livecode wrote:
>> On 1/17/23 12:06, Roger Guay via use-livecode wrote:
>>> Hi all,
>>> 
>>> is there a simple way to move a grc to the points of a polygon in reverse? 
>>> Or, does one have to manipulate the points list to its inverse?
>> 
>> But... why? Don't you end up with the same polygon?
>> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Move in Reverse

2023-01-17 Thread Alex Tweedly via use-livecode
He's moving the graphic object "to" the points of a polygon - i.e. to 
each in turn.


So the movement would be reversed.

On 17/01/2023 23:23, Mark Wieder via use-livecode wrote:

On 1/17/23 12:06, Roger Guay via use-livecode wrote:

Hi all,

is there a simple way to move a grc to the points of a polygon in 
reverse? Or, does one have to manipulate the points list to its inverse?


But... why? Don't you end up with the same polygon?



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Move in Reverse

2023-01-17 Thread Mark Wieder via use-livecode

On 1/17/23 12:06, Roger Guay via use-livecode wrote:

Hi all,

is there a simple way to move a grc to the points of a polygon in reverse? Or, 
does one have to manipulate the points list to its inverse?


But... why? Don't you end up with the same polygon?

--
 Mark Wieder
 ahsoftw...@gmail.com


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Move in Reverse

2023-01-17 Thread Craig Newman via use-livecode
Roger.

I will bet that you have to get the points, write a short routine to reverse 
them, and then use that “inverted” list.

Craig

> On Jan 17, 2023, at 3:06 PM, Roger Guay via use-livecode 
>  wrote:
> 
> Hi all,
> 
> is there a simple way to move a grc to the points of a polygon in reverse? 
> Or, does one have to manipulate the points list to its inverse?
> 
> Thanks,
> 
> Roger
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode