Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
linev committed Nov 26, 2024
1 parent cf52763 commit 242833b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions modules/base/base3d.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1553,10 +1553,14 @@ class PointsCreator {
let k = 1;

// special dots
if (!args.style) k = 1.1; else
if (args.style === 1) k = 0.3; else
if (args.style === 6) k = 0.5; else
if (args.style === 7) k = 0.7;
if (!args.style)
k = 1.1;
else if (args.style === 1)
k = 0.3;
else if (args.style === 6)
k = 0.5;
else if (args.style === 7)
k = 0.7;

const makePoints = texture => {
const material_args = { size: 3*this.scale*k };
Expand Down

0 comments on commit 242833b

Please sign in to comment.