Made it possible to limit the minimum scale of the trackball widget.

Fixed scale of existing widgets to not start too small.
This commit is contained in:
Lars Brubaker 2016-02-24 18:11:10 -08:00
parent f6060939dd
commit 82e6000efd
6 changed files with 10 additions and 9 deletions

View file

@ -126,8 +126,8 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
// move things into the right place and scale
Vector3 bedCenter3D = new Vector3(bedCenter, 0);
meshViewerWidget.TrackballTumbleWidget.TrackBallController.Scale = .05;
meshViewerWidget.TrackballTumbleWidget.TrackBallController.Translate(-bedCenter3D);
meshViewerWidget.TrackballTumbleWidget.TrackBallController.Scale = 3;
}
private void Clear3DGCode(object sender, EventArgs e)