Unify Vector2 3 and 4 to have upper case field members

This commit is contained in:
Lars Brubaker 2017-10-31 12:51:16 -07:00
parent 2de8368f6e
commit 359784877f
63 changed files with 351 additions and 351 deletions

View file

@ -232,7 +232,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
get
{
Vector2 PrinteCenter = ActiveSliceSettings.Instance.GetValue<Vector2>(SettingsKey.print_center);
return (PrinteCenter.x * 1000).ToString();
return (PrinteCenter.X * 1000).ToString();
}
}
}
@ -249,7 +249,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
get
{
Vector2 PrinteCenter = ActiveSliceSettings.Instance.GetValue<Vector2>(SettingsKey.print_center);
return (PrinteCenter.y * 1000).ToString();
return (PrinteCenter.Y * 1000).ToString();
}
}
}