Message 1 of 15
Can't square a user defined parameter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm trying to set a parameter within the Modify->Change Parameters dialog to the diagonal of a square.
The width/height of the square is defined by a User Parameter, "Width".
So, the Expression should be:
sqrt(pow(Width;2)*2)
or
sqrt(Width*Width*2)
But the program won't let me square "Width", however I try and write it.
Replacing Width with its defined value (in this case 50), works just fine:
pow(50;2) and (50*50) and even (Width * 50) are all fine
But
pow(Width;2) and (Width*Width) are both rejected - The expression stays red and I can't exit the dialog
Is this expected behaviour ?