소스 검색

Make units other than meters product even grid lines (for small numbers)

Still need to make the divisions more reasonable for larger/smaller values
tags/v0.1.0
Fen Dweller 6 년 전
부모
커밋
f99d7b48ff
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      macrovision.js

+ 1
- 1
macrovision.js 파일 보기

@@ -206,7 +206,7 @@ function drawScale() {

let pixelsPer = (ctx.canvas.clientHeight - 100) / config.height.value;
let heightPer = config.height.clone();
heightPer.value = 1;
heightPer = math.divide(heightPer, heightPer.toNumber())

if (pixelsPer < config.minLineSize) {
heightPer.value /= pixelsPer / config.minLineSize;


불러오는 중...
취소
저장