CurveFitter
from panda3d.core import CurveFitter
- class CurveFitter
Bases:
Inheritance diagram
- __init__()
- __init__(param0: CurveFitter)
- computeTangents(scale: float)
Once a set of points has been built, and prior to calling MakeHermite() or MakeNurbs(), ComputeTangents() must be called to set up the tangents correctly (unless the tangents were defined as the points were added).
- desample(factor: float)
Removes sample points in order to reduce the complexity of a sampled curve. Keeps one out of every factor samples. Also keeps the first and the last samples.
- static getClassType() TypeHandle
- getSampleTangent(n: int) LVecBase3
Returns the tangent associated with the nth sample added. This is only meaningful if
computeTangents()
has already been called.
- makeHermite() ParametricCurveCollection
Converts the current set of data points into a Hermite curve.
- makeNurbs() ParametricCurveCollection
Converts the current set of data points into a NURBS curve. This gives a smoother curve than produced by MakeHermite().
- removeSamples(begin: int, end: int)
Eliminates all samples from index begin, up to but not including index end, from the database.
- reset()
Removes all the data points previously added to the
CurveFitter
, and initializes it for a new curve.
- sample(curves: ParametricCurveCollection, count: int)
Generates a series of data points by sampling the given curve (or xyz/hpr curves) the indicated number of times. The sampling is made evenly in parametric time, and then the timewarps, if any, are applied.
- sortPoints()
Sorts all the data points in order by parametric time, in case they were added in an incorrect order.
- wrapHpr()
Resets each HPR data point so that the maximum delta between any two consecutive points is 180 degrees, which should prevent incorrect HPR wrapping.