Skip to content

Commit

Permalink
Merge pull request #444 from dmurdoch/logscale
Browse files Browse the repository at this point in the history
Change example to demonstrate log scale
  • Loading branch information
dmurdoch authored Nov 16, 2024
2 parents db28c12 + 994eceb commit 7365676
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 3 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
## Minor changes

* `rgl.incrementID()` has been added.
* An example using log axes has been added to the
help page for `axes3d()`.

## Bug fixes

* `clear3d("all")`, calling `bg3d()` on the root
subscene, and some cases of `pop3d()` involving the
background could create a leak of a background object
(issue #439). For back compatibility, these cases
(issue #439). For back compatibility of saved results, these cases
still increment the object ID number, but don't
actually create a new object.
* `rglwidget()` displays didn't support objects with
Expand Down
8 changes: 5 additions & 3 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# 1.3.12
# 1.3.14

This contains a number of bug fixes and minor changes. Among
other things, it fixes the notes shown on CRAN.
This small release fixes a memory leak that was
introduced in the last release.

Other minor changes are described in the NEWS.
1 change: 1 addition & 0 deletions man/axes3d.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ box around the plot, and
x <- rnorm(10)
y <- rnorm(10)
z <- exp(rnorm(10, mean = 3, sd = 2))
logz <- log10(z)
zticks <- axisTicks(range(logz), log = TRUE)
zat <- log10(zticks)
Expand Down

0 comments on commit 7365676

Please sign in to comment.