Setting viewRefFrame properties

Hi,

Just a quick question, I am playing with the tutorials and I was just trying to set the properties of a segment RefFrame but it always gives me an error like:

ERROR(SCR.PRS11) : TestSimpleStart.main.any(84) : '1' unexpected

I set it with the following line:

    Main.ArmModel.Segs.ForeArm.viewRefFrame.ScaleXYZ={1 1 1};

I tried to put it within AnyDrawSeg object and also tried to put it within the segment object definition.

BR
Aff

Hi Aff,
it seems that you are missing commas seperating the values. This is why '1' is unexpected.
Main.ArmModel.Segs.ForeArm.viewRefFrame.ScaleXYZ={1, 1, 1};

Best regards,
Kristoffer

This topic was automatically closed 125 days after the last reply. New replies are no longer allowed.