8#ifndef PXR_BASE_TS_SPLINE_H
9#define PXR_BASE_TS_SPLINE_H
12#include "pxr/base/ts/api.h"
13#include "pxr/base/ts/splineData.h"
14#include "pxr/base/ts/knotMap.h"
15#include "pxr/base/ts/knot.h"
16#include "pxr/base/ts/types.h"
17#include "pxr/base/ts/typeHelpers.h"
18#include "pxr/base/ts/eval.h"
20#include "pxr/base/vt/value.h"
22#include "pxr/base/tf/type.h"
28PXR_NAMESPACE_OPEN_SCOPE
86 bool operator==(
const TsSpline &other)
const;
89 bool operator!=(
const TsSpline &other)
const;
96 static bool IsSupportedValueType(
TfType valueType);
99 TfType GetValueType()
const;
101 template <
typename T>
102 bool IsHolding()
const;
120 void SetCurveType(TsCurveType curveType);
123 TsCurveType GetCurveType()
const;
161 bool IsPreExtrapolationValid()
const;
171 bool IsPostExtrapolationValid()
const;
193 void SetInnerLoopParams(
211 std::string *reasonOut =
nullptr)
const;
353 std::string* reason =
nullptr);
391 template <
typename T>
396 template <
typename T>
401 template <
typename T>
406 template <
typename T>
407 bool EvalPreDerivative(
411 template <
typename T>
416 template <
typename T>
417 bool EvalPreValueHeld(
444 template <
typename Vertex>
453 return _Sample(timeInterval, timeScale, valueScale, tolerance,
463 template <
typename Vertex>
472 return _Sample(timeInterval, timeScale, valueScale, tolerance,
628 bool IsEmpty()
const;
631 bool HasValueBlocks()
const;
642 bool HasInnerLoops()
const;
645 bool HasExtrapolatingLoops()
const;
667 std::pair<VtValue, VtValue> *rangeOut)
const;
670 template <
typename T>
673 std::pair<T, T> *rangeOut)
const;
680 bool HasValueBlockAtTime(
686 TsTime startTime)
const;
691 TsTime startTime)
const;
705 template <
typename HashState>
706 friend void TfHashAppend(
710 h.Append(spline._data.get());
717 void _SetKnotUnchecked(
const TsKnot & knot);
719 template <
typename SampleHolder>
725 SampleHolder* splineSamples)
const;
728 friend Ts_SplineData* Ts_GetSplineData(
TsSpline &spline);
729 friend const Ts_SplineData* Ts_GetSplineData(
const TsSpline &spline);
731 friend struct Ts_BinaryDataAccess;
732 friend struct Ts_SplineOffsetAccess;
742 const Ts_SplineData* _GetData()
const;
749 template <
typename T>
753 Ts_EvalAspect aspect,
754 Ts_EvalLocation location)
const;
761 bool _UpdateAllTangents();
766 bool _UpdateKnotTangents(
const size_t knotIndex);
773 std::shared_ptr<Ts_SplineData> _data;
781std::ostream& operator<<(std::ostream& out,
const TsSpline &spline);
791struct Ts_SplineOffsetAccess
794 static void ApplyOffsetAndScale(
805bool TsSpline::IsHolding()
const
807 if constexpr (!Ts_IsSupportedValueType<T>::value)
812 return GetValueType() == Ts_GetType<T>();
819 const Ts_EvalAspect aspect,
820 const Ts_EvalLocation location)
const
822 const std::optional<double> result =
823 Ts_Eval(_GetData(), time, aspect, location);
830 *valueOut = T(*result);
842 const Ts_EvalAspect aspect,
843 const Ts_EvalLocation location)
const;
846bool TsSpline::Eval(
const TsTime time, T*
const valueOut)
const
848 return _Eval(time, valueOut, Ts_EvalValue, Ts_EvalAtTime);
852bool TsSpline::EvalPreValue(
const TsTime time, T*
const valueOut)
const
854 return _Eval(time, valueOut, Ts_EvalValue, Ts_EvalPre);
858bool TsSpline::EvalDerivative(
const TsTime time, T*
const valueOut)
const
860 return _Eval(time, valueOut, Ts_EvalDerivative, Ts_EvalAtTime);
864bool TsSpline::EvalPreDerivative(
const TsTime time, T*
const valueOut)
const
866 return _Eval(time, valueOut, Ts_EvalDerivative, Ts_EvalPre);
870bool TsSpline::EvalHeld(
const TsTime time, T*
const valueOut)
const
872 return _Eval(time, valueOut, Ts_EvalHeldValue, Ts_EvalAtTime);
876bool TsSpline::EvalPreValueHeld(
const TsTime time, T*
const valueOut)
const
878 return _Eval(time, valueOut, Ts_EvalHeldValue, Ts_EvalPre);
882PXR_NAMESPACE_CLOSE_SCOPE
#define VT_VALUE_TYPE_CAN_TRANSFORM(T)
A helper for specializing the above trait.
A basic mathematical interval class.
static GfInterval GetFullInterval()
Returns the full interval (-inf, inf).
TfType represents a dynamic runtime type.
A knot belonging to a TsSpline.
An authoring helper class that enforces non-regression in splines.
A mathematical description of a curved function from time to value.
TS_API bool CanBreakdown(TsTime time, std::string *reason=nullptr)
Test if a knot could be inserted by Breakdown at time.
TS_API TsSpline GetTruncated(const GfInterval &interval, TsExtrapolation preFallback=TsExtrapolation(TsExtrapValueBlock), TsExtrapolation postFallback=TsExtrapolation(TsExtrapValueBlock)) const
Returns a new spline resulting from truncation of the given spline to the given interval.
TS_API bool IsG1Continuous() const
Not yet implemented.
TS_API TsKnotMap GetKnots() const
Returns the spline's knots.
TS_API GfInterval Diff(const TsSpline &other, const GfInterval &compareInterval) const
This is an overloaded member function, provided for convenience. It differs from the above function o...
TS_API bool IsLinear() const
Not yet implemented.
TS_API bool SetKnot(const TsKnot &knot, GfInterval *affectedIntervalOut=nullptr)
Incompletely implemented; affectedIntervalOut is not yet populated.
TS_API TsKnotMap GetKnotsWithInnerLoopsBaked() const
Return all the knots on the spline, including knots generated by inner looping.
bool GetValueRange(const GfInterval &timeSpan, std::pair< T, T > *rangeOut) const
Not yet implemented.
static TS_API TsSpline Concatenate(const std::vector< TsSpline > &splines)
Returns a spline resulting from the concatenation of the given splines.
TS_API TsKnotMap GetKnots(const GfInterval &timeInterval) const
This is an overloaded member function, provided for convenience. It differs from the above function o...
TS_API bool GetValueRange(const GfInterval &timeSpan, std::pair< VtValue, VtValue > *rangeOut) const
Not yet implemented.
TS_API bool IsC1Continuous() const
Not yet implemented.
TS_API TsSpline(TfType valueType)
Creates a spline with a specified value type.
TS_API GfInterval Diff(const TsSpline &other) const
Compare two splines.
TS_API TsSpline GetTimeScaled(double timeScale, double timeOffset) const
Returns a new spline resulting from time scaling the knots of a given spline, applying first the scal...
TS_API void SetPreExtrapolation(const TsExtrapolation &extrap)
Sets pre extrapolation.
TS_API bool ClearRedundantKnots(VtValue defaultValue=VtValue(), const GfInterval &interval=GfInterval::GetFullInterval())
Not yet implemented.
bool Sample(const GfInterval &timeInterval, double timeScale, double valueScale, double tolerance, TsSplineSamples< Vertex > *splineSamples) const
Evaluates the value of the TsSpline over the given time interval, typically for drawing.
TS_API bool IsSegmentMonotonic(TsTime startTime) const
Not yet implemented.
TS_API TsKnotMap GetKnotsWithLoopsBaked(const GfInterval &interval) const
Return baked knots that will replicate this spline over the given time interval without any looping.
TS_API void RemoveKnot(TsTime time, GfInterval *affectedIntervalOut=nullptr)
Incompletely implemented; affectedIntervalOut is not yet populated.
TS_API bool IsTimeValued() const
Convenience function that returns true if the value type of the spline is GfTimeCode.
bool Sample(const GfInterval &timeInterval, double timeScale, double valueScale, double tolerance, TsSplineSamplesWithSources< Vertex > *splineSamples) const
This is an overloaded member function, provided for convenience. It differs from the above function o...
TS_API TsSpline()
Default constructor creates a spline without a value type.
TS_API bool AdjustRegressiveTangents()
Shorten any regressive tangents; or, if the current authoring mode is Contain, any tangents that exce...
TS_API bool Breakdown(TsTime time, GfInterval *affectedIntervalOut=nullptr)
Add a knot at the specified time.
TS_API void SetTimeValued(bool timeValued)
TS_API bool HasLoops() const
Convenience for HasInnerLoops() || HasExtrapolatingLoops().
TS_API void SetKnots(const TsKnotMap &knots)
Clears existing knots and sets the given knots.
TS_API bool HasRegressiveTangents() const
Returns whether this spline has any tangents long enough to cause regression; or, if the current auth...
TS_API void SetPostExtrapolation(const TsExtrapolation &extrap)
Sets post extrapolation.
TS_API bool IsSegmentFlat(TsTime startTime) const
Not yet implemented.
TS_API bool IsVarying() const
Not yet implemented.
TS_API bool GetKnot(TsTime time, TsKnot *knotOut) const
Retrieves a copy of the knot at the specified time, if one exists.
TS_API bool IsKnotRedundant(TsTime time, VtValue defaultValue=VtValue()) const
Not yet implemented.
static TS_API TsAntiRegressionMode GetAntiRegressionAuthoringMode()
Returns the current effective anti-regression authoring mode.
TS_API bool BakeInnerLoops()
Bake inner loops in the spline.
TS_API bool IsC0Continuous() const
Not yet implemented.
TsSplineSamples<Vertex> holds a collection of piecewise linear polylines that approximate a TsSpline.
TsSplineSamplesWithSources<Vertex> is a TsSplineSamples<Vertex> that also includes source information...
A map with string keys and VtValue values.
Provides a container which may hold any type, and provides introspection and iteration over array typ...