Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ComputeTangents() [1/2]

void Microsoft.Xna.Framework.Curve.ComputeTangents ( CurveTangent tangentInType,
CurveTangent tangentOutType )
inline

Definition at line 134 of file Curve.cs.

135 {
136 for (int i = 0; i < Keys.Count; i++)
137 {
138 ComputeTangent(i, tangentInType, tangentOutType);
139 }
140 }
CurveKeyCollection Keys
Definition Curve.cs:40
void ComputeTangent(int keyIndex, CurveTangent tangentType)
Definition Curve.cs:53

References Microsoft.Xna.Framework.Curve.ComputeTangent(), Microsoft.Xna.Framework.CurveKeyCollection.Count, and Microsoft.Xna.Framework.Curve.Keys.