Hi i posted this question on one other forum but with no responce.
Maybe someone here will know answer.
Run this code is script editor:
{
int $i=0;
vector $start=<>;
vector $end=<>;
vector $tan1=<>;
vector $tan2=<>;
while ($i<=10)
{
float $pointOnCurve[]=`hermite $start $end $tan1 $tan2 ($i*0.1)`;
spaceLocator -p $pointOnCurve[0] $pointOnCurve[1] $pointOnCurve[2];
$i+=1;
}
}
So i want evenly spaced locators along this curve.I read little about this , and i think what i need to do reparameterization of this curve(based on lenght).But i don't know where to find info about this.For example maya don't allow to rebuild bezier curve(this actually like hermite as i understand) so i don't know this is possible or not.
Maybe there is some python module who allow this type operations on curves etc?