We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68fe6d4 commit 05f662fCopy full SHA for 05f662f
Curves/BezierCubic2D.cs
@@ -205,7 +205,6 @@ public int Count {
205
206
[MethodImpl( INLINE )] public Vector2 GetSecondDerivative( float t ) {
207
ReadyCoefficients();
208
- BezierQuad2D b;
209
return new Vector2( 6 * t * c3.x + 2 * c2.x, 6 * t * c3.y + 2 * c2.y );
210
}
211
Curves/UBSCubic2D.cs
@@ -174,7 +174,6 @@ public int Count {
174
175
176
177
178
179
180
0 commit comments