Minor code-style-related fixes

This commit is contained in:
fieldOfView 2016-11-29 12:33:35 +01:00
parent 86383b2be0
commit 68fd0814e5
2 changed files with 2 additions and 2 deletions

View file

@ -226,7 +226,7 @@ class BuildVolume(SceneNode):
if self._width != 0:
# Scale circular meshes by aspect ratio if width != height
aspect = self._height / self._width
scale_matrix.compose(Vector(1, 1, aspect))
scale_matrix.compose(scale = Vector(1, 1, aspect))
mb = MeshBuilder()
mb.addArc(max_w, Vector.Unit_Y, center = (0, min_h - z_fight_distance, 0), color = self.VolumeOutlineColor)
mb.addArc(max_w, Vector.Unit_Y, center = (0, max_h, 0), color = self.VolumeOutlineColor)