Skip to content

Commit

Permalink
feat(vispy): use detailed as default visualisation style
Browse files Browse the repository at this point in the history
Now that we have quite a performant visualiser, we can default to
detailed rather than constant.
  • Loading branch information
sanjayankur31 committed Sep 10, 2024
1 parent 755ffd2 commit 97b1c63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyneuroml/plot/PlotMorphologyVispy.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ def plot_interactive_3D(
nml_file: Union[str, Cell, Morphology, NeuroMLDocument],
min_width: float = DEFAULTS["minWidth"],
verbose: bool = False,
plot_type: str = "constant",
plot_type: str = "detailed",
axes_pos: Optional[
Union[Tuple[float, float, float], Tuple[int, int, int], str]
] = None,
Expand Down Expand Up @@ -925,7 +925,7 @@ def plot_3D_cell_morphology(
Union[Tuple[float, float, float], Tuple[int, int, int], str]
] = None,
nogui: bool = False,
plot_type: str = "constant",
plot_type: str = "detailed",
theme: str = "light",
meshdata: Optional[List[Any]] = None,
highlight_spec: Optional[Union[Dict, frozendict]] = None,
Expand Down

0 comments on commit 97b1c63

Please sign in to comment.