Skip to content

Commit 2b822f1

Browse files
committed
Use a smaller value
1 parent 348f60f commit 2b822f1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/src/markdown/demos/3d_models.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ <h1>ColorAide Color Space Models</h1>
383383
# in the center. At lower resolutions, this is more noticeable. To avoid this, interpolate rings very close to zero
384384
# radius, but not at zero radius. The mesh will still connect all the points near the center, but will leave a small
385385
# hole at the center which will be too small to see.
386-
start, end = 1.0 * factor, 1e-6
386+
start, end = 1.0 * factor, 1e-16
387387

388388
# Render the two halves of the disc
389389
hue_start, hue_end = 0, 360

tools/gamut_3d_plotly.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def cyl_disc(fig, ColorCyl, space, gamut, location, resolution, opacity, edges,
179179
# in the center. At lower resolutions, this is more noticeable. To avoid this, interpolate rings very close to zero
180180
# radius, but not at zero radius. The mesh will still connect all the points near the center, but will leave a small
181181
# hole at the center which will be too small to see.
182-
start, end = 1.0 * factor, 1e-6
182+
start, end = 1.0 * factor, 1e-16
183183

184184
# Render the two halves of the disc
185185
hue_start, hue_end = 0, 360

0 commit comments

Comments
 (0)