Loading...
Searching...
No Matches
diff.h
1//
2// Copyright 2023 Pixar
3//
4// Licensed under the terms set forth in the LICENSE.txt file available at
5// https://openusd.org/license.
6//
7
8#ifndef PXR_BASE_TS_DIFF_H
9#define PXR_BASE_TS_DIFF_H
10
11#include "pxr/pxr.h"
12#include "pxr/base/ts/api.h"
13#include "pxr/base/ts/types.h"
14
15PXR_NAMESPACE_OPEN_SCOPE
16
17class TsSpline;
18
27TS_API
29TsFindChangedInterval(
30 const TsSpline &s1,
31 const TsSpline &s2);
32
33PXR_NAMESPACE_CLOSE_SCOPE
34
35#endif
A basic mathematical interval class.
Definition: interval.h:33
Represents a spline value object.
Definition: spline.h:51