You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/SharpGLTF.Toolkit/Animations/CurveBuilder.cs
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,17 @@ namespace SharpGLTF.Animations
10
10
/// Represents an editable curve of <typeparamref name="T"/> elements.
11
11
/// </summary>
12
12
/// <typeparam name="T">An element of the curve.</typeparam>
13
+
/// <remarks>
14
+
/// <para>
15
+
/// <see cref="CurveBuilder{T}"/> instances are created using <see cref="CurveFactory.CreateCurveBuilder{T}()"/> with T being <see cref="Vector3"/>, <see cref="Quaternion"/> types and so on.
16
+
/// </para>
17
+
/// <para>
18
+
/// But <see cref="CurveFactory"/> is internal, the actual way of creating animation curves is using:<br/>
0 commit comments