Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
interpolate to nth control point
#1
I have a spline with a number of control points.  I can go from one control point to an adjacent control point via Interpolate(% progress, worldSpace).  Works fine. 

My initial take on going from CP0 => CP3 was getting CP3 control point & calling Interpolate from that CP.  What am I missing here?  Thanks. 

Code:
    
  var nextControlPoint = Spline.ControlPointsList[_icp+3];
  transform.position = nextControlPoint.Interpolate(percentCompletion, Space.World);
Reply
#2
Hi
When you use a someControlPoint.Interpolate, you have a position between that control point and the next one, so cp3.Interpolate returns a position between cp3 and cp4
Also, the first parameter is not a %. Please read the method's documentation to understand what that parameter means. More information here: https://curvyeditor.com/documentation/splines/start?s[]=tf#units
Each control point has a Distance and TF values. You also have a InterpolateByDistance method. The max value of TF is 1 and the max value of Distance is Spline.Length. With all this information you should be able to find any point at any position on the spline.
I hope this helped
Have a nice day
Please consider leaving a review for Curvy. This will help a lot keeping Curvy relevant in the eyes of the Asset Store algorithm.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Get position of all control points for a spline gekido 1 2 1 hour ago
Last Post: _Aka_
  Avoiding runtime GC allocations on control point position change Ell223 8 18 02-24-2024, 10:43 AM
Last Post: _Aka_
  Connection "next' control point jh092 3 15 11-22-2023, 11:47 AM
Last Post: _Aka_
  Spline.Length not updated unless I add a point to spline (or modify it) first. _RicO 3 6 08-26-2023, 08:41 AM
Last Post: _Aka_

Forum Jump: