mirror of
https://github.com/emilk/egui.git
synced 2026-08-31 05:40:03 -04:00
Replace every ... with … like some sort of crazy person
Also fix some small typos Closes https://github.com/emilk/egui/pull/736
This commit is contained in:
@@ -14,7 +14,7 @@ pub struct Shadow {
|
||||
}
|
||||
|
||||
impl Shadow {
|
||||
/// Tooltips, menus, ...
|
||||
/// Tooltips, menus, …
|
||||
pub fn small_dark() -> Self {
|
||||
Self {
|
||||
extrusion: 16.0,
|
||||
@@ -22,7 +22,7 @@ impl Shadow {
|
||||
}
|
||||
}
|
||||
|
||||
/// Tooltips, menus, ...
|
||||
/// Tooltips, menus, …
|
||||
pub fn small_light() -> Self {
|
||||
Self {
|
||||
extrusion: 16.0,
|
||||
|
||||
@@ -81,7 +81,7 @@ impl Path {
|
||||
for i in 1..n - 1 {
|
||||
let mut n1 = (points[i + 1] - points[i]).normalized().rot90();
|
||||
|
||||
// Handle duplicated points (but not triplicated...):
|
||||
// Handle duplicated points (but not triplicated…):
|
||||
if n0 == Vec2::ZERO {
|
||||
n0 = n1;
|
||||
} else if n1 == Vec2::ZERO {
|
||||
@@ -124,7 +124,7 @@ impl Path {
|
||||
let next_i = if i + 1 == n { 0 } else { i + 1 };
|
||||
let mut n1 = (points[next_i] - points[i]).normalized().rot90();
|
||||
|
||||
// Handle duplicated points (but not triplicated...):
|
||||
// Handle duplicated points (but not triplicated…):
|
||||
if n0 == Vec2::ZERO {
|
||||
n0 = n1;
|
||||
} else if n1 == Vec2::ZERO {
|
||||
|
||||
Reference in New Issue
Block a user