I can’t figure out how, basically, to create a polar array but use angles instead of object count.
For example, select an object, select a rotation point, create copies every -5 degrees through 75 degrees.
Is there some equivalent of this?
I can’t figure out how, basically, to create a polar array but use angles instead of object count.
For example, select an object, select a rotation point, create copies every -5 degrees through 75 degrees.
Is there some equivalent of this?
check the help for the command.
there is an option called “stepAngle”
(in your case 5)
you have to calculate the numer of items (75/5) + 1 = 16
https://docs.mcneel.com/rhino/7/help/en-us/index.htm#commands/arraypolar.htm
hope this helps - kind regards -tom
Hi Turner - here is a quick and dirty python that may do what you need -
ArrayPolarByAngleIncrement.py (607 Bytes)
To use the Python script use RunPythonScript, or a macro:
_-RunPythonScript "Full path to py file inside double-quotes"