Suppose we are to construct the following helix:-
[ul]
[li]Revolutions = 8[/li]
[li]Height = 60[/li]
[li]Diameter = 200[/li]
[/ul]
V5 asks for Start Point, Pitch and Height, it could have asked for Radius, Revolutions and Height, or Radius, Revs and Pitch; but they chose the first option.
If the (number of) Revolutions was asked for in addition to the current parameters then we'd have a case of double definition. Forgetting the radius for a minute, only any
Two things are required - the third is a function of those two.
[ul]
[li]Revolutions = Height / Pitch[/li]
[li]Height = Pitch * Revs[/li]
[li]Pitch = Height / Revs[/li]
[/ul]
The values for Height and Revs can be used directly in the Pitch box, as shown below.
The start point has been renamed in the Tree for clarity.