Skip to content

Commit

Permalink
dropping unneeded console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
sithel committed Apr 12, 2024
1 parent 4d33c36 commit 92f10ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/drawing.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export function drawSigOrderMark(sigDetails, position, maxSigCount, w, suggested
const dist = (position.rotation == 0) ? top.start.y - bottom.start.y : top.start.x - bottom.start.x;
let h = Math.min(suggested_h, dist/maxSigCount);
const offset = h * sigDetails.signatureNum;
console.log("Looking at signature ",sigDetails.signatureNum," of ",maxSigCount," PDF top/bottom distance ",dist," results in ",h," (",suggested_h," vs ",(dist/maxSigCount),") order mark height w/ offset ",offset," (width ",w,")");
// console.log("Looking at signature ",sigDetails.signatureNum," of ",maxSigCount," PDF top/bottom distance ",dist," results in ",h," (",suggested_h," vs ",(dist/maxSigCount),") order mark height w/ offset ",offset," (width ",w,")");

if (position.rotation == 0) {
h = h * -1;
Expand Down

0 comments on commit 92f10ed

Please sign in to comment.