Skip to content
Permalink
Browse files

- mirror bug mesh

  • Loading branch information...
Fabian
Fabian committed Mar 4, 2018
1 parent 0e46fd0 commit d0967b99ed6a01c89503393da17345c3a5908644
Showing with 5 additions and 3 deletions.
  1. +5 −3 js/main.js
@@ -608,9 +608,11 @@ function updateMeshInfoUI() {
var cost = volume * settings.get('resin.price') / 1000;

$meshFaces.html(mesh.geometry.faces.length);
$meshVolume.html(volume);
$meshWeight.html(weight);
$meshCost.html(cost);

// mirror bugfix
$meshVolume.html(Math.abs(volume));
$meshWeight.html(Math.abs(weight));
$meshCost.html(Math.abs(weight));
}

// Slicer panel

1 comment on commit d0967b9

@n0sr3v

This comment has been minimized.

Copy link

commented on d0967b9 Mar 4, 2018

Fixing negative values when mirroring.

Please sign in to comment.
You can’t perform that action at this time.