Corrected the angle bounds

This commit is contained in:
Jose Luis Cercos-Pita 2014-07-11 16:06:42 +02:00 committed by wmayer
parent 9a12a16cc4
commit 1ab919ef7e

View File

@ -283,8 +283,8 @@ class TaskPanel:
draft_max = bbox.ZMax / Units.Metre.Value
draft = self.clampLength(form.draft, draft_min, draft_max, draft)
trim_min = -90.0
trim_max = 90.0
trim_min = -180.0
trim_max = 180.0
trim = self.clampAngle(form.trim, trim_min, trim_max, trim)
self.onUpdate()