Skip to content

Commit 05f662f

Browse files
committed
cleanup
1 parent 68fe6d4 commit 05f662f

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

Curves/BezierCubic2D.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,6 @@ public int Count {
205205

206206
[MethodImpl( INLINE )] public Vector2 GetSecondDerivative( float t ) {
207207
ReadyCoefficients();
208-
BezierQuad2D b;
209208
return new Vector2( 6 * t * c3.x + 2 * c2.x, 6 * t * c3.y + 2 * c2.y );
210209
}
211210

Curves/UBSCubic2D.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ public int Count {
174174

175175
[MethodImpl( INLINE )] public Vector2 GetSecondDerivative( float t ) {
176176
ReadyCoefficients();
177-
BezierQuad2D b;
178177
return new Vector2( 6 * t * c3.x + 2 * c2.x, 6 * t * c3.y + 2 * c2.y );
179178
}
180179

0 commit comments

Comments
 (0)