Browse Source

switch setPenWidth values around.

The image renders better.
master
Craig Oates 6 years ago
parent
commit
7bd8670a27
  1. 4
      SmoulderingBeachBall/InternalServices.fs

4
SmoulderingBeachBall/InternalServices.fs

@ -28,8 +28,8 @@
let width = float32 imgWidth
let height = float32 imgHeight
if (width >= height) then
width * (float32 0.05)
else height * (float32 0.05)
height * (float32 0.05)
else width * (float32 0.05)
let createBorderPath penWidth spec =
let offset = penOffset penWidth

Loading…
Cancel
Save