Skip to content

Commit

Permalink
[Change] Plot is default changed as a single layer
Browse files Browse the repository at this point in the history
plot3D argument is False by default
  • Loading branch information
drlukeparry committed Aug 4, 2022
1 parent c11a9b3 commit 02ccc1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyslm/visualise.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def plotSequential(layer: Layer,

def plot(layer: Layer, zPos:Optional[float] = 0,
plotContours: Optional[bool] = True, plotHatches: Optional[bool] = True, plotPoints: Optional[bool] = True,
plot3D: Optional[bool] = True, plotArrows: Optional[bool] = False, plotOrderLine: Optional[bool] = False,
plot3D: Optional[bool] = False, plotArrows: Optional[bool] = False, plotOrderLine: Optional[bool] = False,
plotColorbar: Optional[bool] = False,
index: Optional[str] = '',
handle: Optional[Tuple[plt.Figure, plt.Axes]] = None) -> Tuple[plt.Figure, plt.Axes]:
Expand Down

0 comments on commit 02ccc1d

Please sign in to comment.