Example Comment Typo Fix (#9427)

# Objective

Fixes a typo in one of the comments in an example.

## Solution

Fix the typo in the comment.
This commit is contained in:
Oli Wilkins 2023-08-12 22:06:15 +01:00 committed by GitHub
parent e489dcc9e8
commit 43fe83b7c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,7 +50,7 @@ fn system(mut gizmos: Gizmos, time: Res<Time>) {
// You may want to increase this for larger circles. // You may want to increase this for larger circles.
gizmos.circle_2d(Vec2::ZERO, 300., Color::NAVY).segments(64); gizmos.circle_2d(Vec2::ZERO, 300., Color::NAVY).segments(64);
// Arcs default amount of segments is linerarly interpolated between // Arcs default amount of segments is linearly interpolated between
// 1 and 32, using the arc length as scalar. // 1 and 32, using the arc length as scalar.
gizmos.arc_2d(Vec2::ZERO, sin / 10., PI / 2., 350., Color::ORANGE_RED); gizmos.arc_2d(Vec2::ZERO, sin / 10., PI / 2., 350., Color::ORANGE_RED);
} }