Re: Pic question

2022-12-02 Thread Ralph Corderoy
Hi Riza, > I have a location using a fraction like so "1/3 ". How can > I get the x component of that location? ... > a = 1/3 ; > print a.x; > > This fails at the assignment and it says "syntax error before ','" You're assigning an expression to a variable and ‘n/m <...>’ is available in

Re: Pic question

2022-12-02 Thread Ralph Corderoy
> You're assigning an expression to a variable and ‘n/m <...>’ is > available in expressions as far as I recall. *unavailable*

Re: Pic question

2022-12-02 Thread Riza Dindir
Hello Ralph, Thank you very much for the help. Riza On Fri, Dec 2, 2022 at 12:53 PM Ralph Corderoy wrote: > > Hi Riza, > > > I have a location using a fraction like so "1/3 ". How can > > I get the x component of that location? > ... > > a = 1/3 ; > > print a.x; > > > > This fails at t