Skip to content

Commit 8d2b28b

Browse files
Merge pull request #4 from StructuralPython/fixes/remove_aux_nodes
fix: remove aux nodes plotting; chore: bump version
2 parents af57379 + c3d2e9a commit 8d2b28b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pynite-plotly"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "Add your description here"
55
readme = "README.md"
66
authors = [

src/pynite_plotly/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
A 3rd party visualization module for PyNiteFEA using plotly
33
"""
4-
__version__ = "0.2.1"
4+
__version__ = "0.3.0"
55

66
from pynite_plotly.rendering import Renderer

src/pynite_plotly/rendering.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -307,9 +307,9 @@ def update(self, reset_camera=True):
307307
for node in self.model.nodes.values():
308308
self.plot_node(node)
309309

310-
# Plot each auxiliary node in the model
311-
for aux_node in self.model.aux_nodes.values():
312-
self.plot_node(aux_node)
310+
# # Plot each auxiliary node in the model
311+
# for aux_node in self.model.aux_nodes.values():
312+
# self.plot_node(aux_node)
313313

314314
# Render node labels
315315
label_points = [[node.X, node.Y, node.Z] for node in self.model.nodes.values()]

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)