fix comment, fix doc example readme file#769
Merged
Conversation
Member
Author
|
Failure makes no sense, I can't produce locally O_O def test_gray():
fig = fpl.Figure()
ig = fig[0, 0].add_image(GRAY_IMAGE)
assert isinstance(ig, fpl.ImageGraphic)
ig.add_event_handler(
event_handler,
"data",
"cmap",
"vmin",
"vmax",
"interpolation",
"cmap_interpolation",
)
# make sure entire data is the same
npt.assert_almost_equal(ig.data.value, GRAY_IMAGE)
# since this entire image is under the wgpu max texture limit,
# the entire image should be in the single Texture buffer
npt.assert_almost_equal(ig.data.buffer[0, 0].data, GRAY_IMAGE)
> ig.cmap = "viridis"
tests/test_image_graphic.py:89:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
fastplotlib/graphics/image.py:205: in cmap
self._cmap.set_value(self, name)
fastplotlib/graphics/_features/_base.py:346: in set_value_wrapper
raise exc # set_value has raised. The line above and the lines 2+ steps below are probably more relevant!
fastplotlib/graphics/_features/_base.py:343: in set_value_wrapper
set_value(self, graphic_or_key, value)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <fastplotlib.graphics._features._image.ImageCmap object at 0x114c90410>
graphic = ImageGraphic, value = 'viridis'
@block_reentrance
def set_value(self, graphic, value: str):
new_colors = make_colors(256, value)
> graphic._material.map.texture.data[:] = new_colors
E AttributeError: 'TextureMap' object has no attribute 'data' |
Member
Author
|
Ah the change is because |
|
📚 Docs preview built and uploaded! https://www.fastplotlib.org/ver/fix-comment-fix-doc-readme |
Member
Author
|
@clewis7 gtg! |
clewis7
approved these changes
Mar 17, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
old comment lingering from when graphics were weakrefs (before we dug into the ways ipython docs gc)